UNPKG

@easykit/design

Version:

Easy kit design components

15 lines (14 loc) 411 B
import { EmptyProps, TreeData } from '../../..'; import { FC } from 'react'; export type TreeSelectProps = { className?: string; treeData: TreeData[]; clearable?: boolean; value?: string; onChange?: (value?: string) => void; loading?: boolean; placeholder?: string; contentClassName?: string; emptyProps?: EmptyProps; }; export declare const TreeSelect: FC<TreeSelectProps>;