import { ReactNode } from "react"; import { PropsWithStyles, InnerRef, PropsWithInnerRef } from "react-select"; export declare type OptionProps = PropsWithStyles & { /** The children to be rendered. */ children: ReactNode; /** Whether the option is disabled. */ isDisabled: boolean; /** Whether the option is focused. */ isFocused: boolean; /** Whether the option is selected. */ isSelected: boolean; /** Inner ref to DOM Node */ innerRef: InnerRef; /** props passed to the wrapping element for the group. */ innerProps?: PropsWithInnerRef; label: string; type: "option"; data: any; }; /** * Custom Option component required to display the plus Icon for * a creatable option. Original Option pulled from the react-select's src. * @param props * @constructor */ export declare const SelectOption: (props: OptionProps) => JSX.Element;