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

17 lines
382 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"> {
2026-04-07 09:29:03 +08:00
}
/**
*
*/
declare const IndustryCascader: FC<IndustryCascaderProps>;
export default IndustryCascader;