import type { FC } from 'react'; interface DeptTreeProps { treeData: any[]; onSelect?: (value: string[], checkAll: boolean) => void; selectedKeys?: string[]; loadData?: (node: any) => Promise; onCheckChange?: (checkAll: boolean) => void; } declare const DeptTree: FC; export default DeptTree;