import type { FC } from "react"; import type { BasicSelectTreeProps } from "../Basic"; /** * 组件属性 */ export interface IndustrySelectTreeProps extends Omit { } /** * 行业类型下拉树组件 */ declare const IndustrySelectTree: FC; export default IndustrySelectTree;