import type { FC } from "react"; import type { BasicSelectTreeProps } from "../../Basic"; import { Params } from "../../../LeftTree/Department/Gwj"; /** * 组件属性 */ export interface DepartmentSelectTreeProps extends Omit { /** 请求参数 */ params?: Params; } /** * 部门下拉树组件(港务局版本) */ declare const DepartmentSelectTree: FC; export default DepartmentSelectTree;