import React from 'react'; import { MestGenericProps } from "../themes"; import { StyledSelectOptionVariants } from "./style"; type Props = { value: string; disabled?: boolean; divider?: boolean; label?: string; preventAllEvents?: boolean; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type SelectOptionProps = Props & NativeAttrs & StyledSelectOptionVariants; declare const SelectOption: React.FC>; export default SelectOption;