import { RefObject } from 'react'; import { IBaseOption } from '../../interfaces/CustomSearchInterfaces'; export interface IOptionProps { option: IBaseOption; focus: boolean; index: number; onClick: (option: any) => void; onkeyPressed: (event: any, index: number) => void; highlight?: string; optionRef: RefObject; } export declare const SingleSelectResultOption: (props: IOptionProps) => JSX.Element;