import { HealthInformationTypes, AuthMode } from "../../../common/enums"; /** * Represents the data for creating a care context. */ export declare class CreateCareContextDTO { patientReference: string; patientAbhaAddress?: string; practitionerReference: string; appointmentReference: string; hiType: HealthInformationTypes; appointmentDate: string; resendOtp: boolean; } /** * Represents the response for creating a care context. */ export declare class CreateCareContextResponse { careContextReference: string; requestId: string; authModes: AuthMode[]; }