@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 547 B
TypeScript
import React from 'react';
import { HospitalBranchApi } from "../../../care/interfaces/types";
import { LocaleType } from "../../../types";
export type TClinicInfoProps = {
hospitalInfo?: HospitalBranchApi;
distance?: string;
locale: LocaleType;
isLoggedIn?: boolean;
googleMapKey: string;
onPhoneHospital?: () => void;
dataEventCategory: string;
dataEventAction: string;
dataEventLabel: string;
};
declare function ClinicInfo(props: TClinicInfoProps): React.JSX.Element;
export { ClinicInfo };