import type { FC } from 'react'; import type { Dept } from '../type'; import './index.less'; export interface DeptListProps { dataSource: Dept[]; onClick: (res: Dept) => void; selectedData?: Dept[]; onSelect?: (isIncludeSubDept: boolean, res: Dept) => void; isIncludeSubDept?: boolean; isEnableSelect: boolean; enableOrgIds: any; } declare const DeptList: FC; export default DeptList;