UNPKG

@hhgtech/hhg-components

Version:
17 lines (16 loc) 547 B
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 };