import type { FC } from 'react'; interface DeptTreeProps { treeData: any[]; onSearch?: (value: string) => void; initValues?: any[]; onCheck?: (values: any[]) => void; loadData?: (node: any) => Promise; } declare const DeptTree: FC; export default DeptTree;