/// <reference types="react" />
import { CommonInputProps } from './Form';
import { OptionsProps } from './SelectInput';
interface Props extends CommonInputProps<string> {
    options: OptionsProps[] | undefined;
    onChangeText: (text: string) => void;
    loading?: boolean;
    loadingText?: string;
    multiple?: boolean;
}
export declare const AutoComplete: (props: Props) => JSX.Element;
export {};
