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<DeptListProps>;
export default DeptList;
