import { FC } from 'react';
import { AutocompleteProps } from '@mantine/core';
export type GoogleLocationBlockProps = Omit<Omit<AutocompleteProps, 'data'>, 'onChange'> & {
    locale?: string;
    onChange?: (value: string, valueOption?: any) => void;
};
export declare const GoogleLocationBlock: FC<GoogleLocationBlockProps>;
