import type { FC } from "react"; import type { BasicSelectTreeProps } from "../Basic"; /** * 组件属性 */ export interface IndustrySelectTreeProps extends Omit { /** 占位符,默认"行业类型" */ placeholder?: string; } /** * 行业类型下拉树组件 */ declare const IndustrySelectTree: FC; export default IndustrySelectTree;