import { FC } from "react"; import { OptionProps } from "antd/es/select"; interface BaseOptionProps { /** Option 器类名 */ className?: string; /** 是否禁用 */ disabled?: boolean; /** 选项上的原生 title 提示 */ title?: string; /** 默认根据此属性值进行筛选 */ value?: string | number; } export type FRCSelectOptionProps = BaseOptionProps & OptionProps; export declare const Option: FC; export default Option;