@hhgtech/hhg-components
Version:
Hello Health Group common components
8 lines (7 loc) • 334 B
TypeScript
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>;