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