import { HealthInformationDTO } from "./healthInformation.dto"; /** * Represents data for updating visit records. */ export declare class UpdateVisitRecordsDTO { careContextReference: string; patientReference: string; practitionerReference: string; appointmentReference: string; patientAbhaAddress?: string; healthRecords: HealthInformationDTO[]; mobileNumber?: string; requestId?: string; } /** * Represents the response for updating visit records. */ export declare class UpdateVisitRecordsResponse { success: boolean; }