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