import { FC, ReactText } from 'react'; export interface OptionProps { /** 选项值 */ value: string; /** 选项的文字内容 */ children: ReactText; /** 设置是否禁用选项 */ disabled?: boolean; /** 暂不可用 */ selected?: boolean; /** 暂不可用 */ onSelect?: (value: string, optionText: string) => void; } export declare const Option: FC; export default Option;