import { FC } from 'react'; export type IChildren = { label: string; value: string | number; children?: IChildren }[]; export type ITree = { options: IChildren; /** Tree的三种样式 */ mode: 'select' | 'multi-select' | 'checkbox'; /** 选中的回调函数 */ onChange: (selected: any) => void; }; declare const Tree: FC; export { Tree };