import type { FC } from 'react';
import './index.less';
export interface SelectDataProps {
    isIncludeSubDept: boolean;
    onIsIncludeSubDeptChange: (e: boolean) => void;
    value: any[];
    onSelect: (v: boolean, obj: any) => void;
    onConfirm: () => void;
}
declare const SelectData: FC<SelectDataProps>;
export default SelectData;
