zy-react-library/src/components/SelectTree/Industry/index.d.ts

17 lines
398 B
TypeScript
Raw Normal View History

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../Basic";
/**
*
*/
export interface IndustrySelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder" | "nameKey" | "idKey" | "childrenKey"> {
2026-04-07 09:29:03 +08:00
}
/**
*
*/
declare const IndustrySelectTree: FC<IndustrySelectTreeProps>;
export default IndustrySelectTree;