import * as React from 'react'; import { SelectorOptionSelector, Option } from '../types'; export interface CustomClasses { listItem?: string; hover?: string; customAdd?: string; listAnchor?: string; } export interface Props { customClasses?: CustomClasses; customValue?: string; children: React.ReactNode; hover?: boolean; result?: Opt; handleOptionSelected: SelectorOptionSelector; } declare const TypeaheadOption: (props: Props) => JSX.Element; export default TypeaheadOption;