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