UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 334 B
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>;