import { InputProps } from ".."; import React, { MouseEventHandler } from 'react'; export type OptionProps = { value: string; isSelected?: boolean; onClick?(value: string | number): void; onMouseEnter?: MouseEventHandler; }; export type AutoCompleteProps = Pick & { options?: OptionProps[]; value?: string; defaultValue?: string; onSelect?: (value: string) => void; onSearch?: (value: string) => void; allowClear?: boolean; }; declare const _default: React.NamedExoticComponent; export default _default;