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