import type { FC } from "react"; import type { BasicLeftTreeProps } from "../Basic"; /** * 组件属性 */ export interface AreaLeftTreeProps extends Omit { } /** * 属地左侧树组件 */ declare const AreaLeftTree: FC; export default AreaLeftTree;