import * as React from 'react'; import './style/option.less'; interface OptionsProps { disabled?: boolean; children?: React.ReactNode; nativeProps?: any; [key: string]: any; } export interface OptionsType { text?: React.ReactNode | string; selected?: boolean; disabled?: boolean; defaultValue?: string | string[]; key: any; children?: React.ReactNode; } declare const SelectOption: React.FC; export default SelectOption;