import type { FC } from 'react';
import './index.less';
interface AddDeptModalProps {
    visible: boolean;
    onClose: () => void;
    name: string;
    onOk: (res: any[]) => void;
    selectType: 'single' | 'multiple';
    initialValue?: any[];
    getEngineApis?: any;
    defaultDepart?: any;
    settingDepart?: any;
    selectRank?: any;
    enableOrgIds?: any;
}
declare const AddDeptModal: FC<AddDeptModalProps>;
export default AddDeptModal;
