import React from 'react'; interface Props { value?: string; disabled?: boolean; className?: string; divider?: boolean; label?: boolean; preventAllEvents?: boolean; } declare type NativeAttrs = Omit, keyof Props>; export declare type SelectOptionProps = Props & NativeAttrs; declare const SelectOption: React.ForwardRefExoticComponent>; export default SelectOption;