import * as React from "react"; import { TypeAheadDataProps } from "../__utils/fetch-data-json"; import { SelectedOption } from "../select/dropdown"; import { ChangeHandler } from "../__utils/type"; import { IValidationArray } from "@turtlemint/validators"; export interface TypeAheadProps { name: string; onChange?: ChangeHandler; data: Omit; onBlur?: (value: SelectedOption) => void; disabled?: boolean; block?: boolean; style?: React.CSSProperties; dropdownStyle?: React.CSSProperties; validations?: IValidationArray; value?: SelectedOption; } export declare const TypeAhead: React.ForwardRefExoticComponent>; export default TypeAhead;