import type { FC } from 'react'; import type { Dept } from '../type'; import './index.less'; export interface DeptListProps { value: Dept[]; onClick: (res: Dept) => void; } declare const DeptList: FC; export default DeptList;