/// <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>;
