import React from 'react'; declare type Props = { 'data-qa'?: string; disableClearable?: boolean; disabled?: boolean; getOptionLabel: (...params: any) => any; hint?: string; inputValue?: string; label: string; multiple?: boolean; name?: string; onBlur?: Function; onChange?: Function; onInputChange?: Function; onSelect?: any; options: any[]; placeholder?: string; popupIcon?: Node; required?: boolean; style?: object; theme?: 'enabled' | 'negative'; value: any | null; valueCallBack?: Function; }; declare const AutoComplete: React.FC; export default AutoComplete;