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