import type { FC } from "react"; import type { BasicCascaderProps } from "../Basic"; /** * 组件属性 */ export interface IndustryCascaderProps extends Omit { /** 占位符,默认为"行业类型" */ placeholder?: string; } /** * 行业类型级联组件 */ declare const IndustryCascader: FC; export default IndustryCascader;