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