UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 455 B
/// <reference types="react" /> import { SiteType } from "../../../../types"; export type CardAuthorContextProps = { displayName: string; role: string; title: string; siteType: SiteType; handleMakeAppointment: (doctorId?: string, hospitalId?: string) => void; doctorId: string; hospitalId: string; currentUrl: string; }; export declare const CardAuthorContext: import("react").Context<CardAuthorContextProps>;