import type { FC } from 'react';
import './index.less';
interface AddDepartModalProps {
    visible: boolean;
    departListed: any[];
    checkedList: any[];
    onCancel: () => void;
    onOk: (checkValues: any) => void;
    enableCheckList: any[];
    sRecursive?: string;
    isDefaultDepart: boolean;
    selectType?: string;
}
declare const AddDepartModal: FC<AddDepartModalProps>;
export default AddDepartModal;
