import { AppointmentPriority, HealthInformationTypes } from "../../../common/enums"; import { HealthInformationDTO } from "./healthInformation.dto"; /** * Represents data for linking health documents. */ export declare class HealthDocumentLinkingDTO { patientReference: string; practitionerReference: string; patientAddress: string; patientName: string; appointmentStartDate: string; appointmentEndDate: string; appointmentPriority?: AppointmentPriority; organizationId: string; appointmentSlot?: string; appointmentReference: string; patientAbhaAddress: string; hiType: HealthInformationTypes; mobileNumber: string; healthRecords: HealthInformationDTO[]; }