zy-react-library/components/Cascader/Industry/index.d.ts

18 lines
450 B
TypeScript
Raw Normal View History

import type { FC } from "react";
import type { BasicCascaderProps } from "../Basic";
/**
*
*/
export interface IndustryCascaderProps extends Omit<BasicCascaderProps, "options" | "placeholder" | "nameKey" | "idKey" | "childrenKey"> {
/** 占位符,默认为"行业类型" */
placeholder?: string;
}
/**
*
*/
declare const IndustryCascader: FC<IndustryCascaderProps>;
export default IndustryCascader;