import type { InputProps } from '../../interfaces.js';
interface IAddressData {
    complemento: any;
    zipCode: any;
    logradouro: any;
    bairro: any;
    numero: any;
    uf: any;
    localidade: any;
    lat: string;
    lng: string;
    fullAddress: any;
}
type InputGoogleAutoCompleteProps = Omit<InputProps, 'type' | 'name'> & {
    enableAddressFieleds?: boolean;
    disabledScriptLoad?: boolean;
    onPlaceSelected?: (addressData: IAddressData) => void;
};
export declare function InputGoogleAutoComplete(props: InputGoogleAutoCompleteProps): import("react/jsx-runtime").JSX.Element;
export {};
