import type { FC } from "react"; import type { BasicLeftTreeProps } from "../../Basic"; /** * 组件属性 */ export interface DepartmentLeftTreeProps extends Omit { /** 请求参数 */ params?: Record; } /** * 部门左侧树组件(港务局版本) */ declare const DepartmentLeftTree: FC; export default DepartmentLeftTree;