import type { FC } from 'react'; import './index.less'; interface DeptListProps { value: any[]; onSelect: (v: boolean, obj: any) => void; } declare const DeptList: FC; export default DeptList;