import { OptionsSelectType } from '../Common/types'; import { Styles } from 'react-select'; export declare type AutoCompletePropsType = { inputPlaceholder?: string; inputClassName?: string; styles?: Partial; loadingMessage?: string; inputClassNamePrefix?: string; inputRequired?: boolean; inputName: string; isLoading: boolean; onSelectOption: (e: any) => void; onInputChange: (e: string) => void; values?: OptionsSelectType[]; optionsSelect: OptionsSelectType[]; };