import * as React from 'react'; interface OptionProps { prefixCls?: string; value?: string | number | React.ReactNode; title?: string; checked?: boolean | (() => void); activeKey?: string | number; disabled?: boolean; showOptionCheckedIcon?: boolean; children?: React.ReactNode | React.ReactChildren; onOptionClick?: (e: React.MouseEvent, option: any) => void; } export declare type OptionInterface = React.ForwardRefExoticComponent> & { isSelectOption: true; }; declare const Option: OptionInterface; export default Option;