import { ClinicalNotesResponseDto } from "src/op-hub-clinical-notes-with-abha/entities/op-hub-clinical-notes-with-abha.entity";
import { UpdateManualVitalDto } from "src/op-hub-manual-vitals/dto/update-manual_vital.dto";
import { PrescriptionDetailDto } from "src/op-hub-opd-prescription/entities/op-hub-opd-prescription.entity";
export declare class PatientDetailsDto {
    patientName: string;
    dob: string;
    age: string;
    mobileno: string;
    email: string;
    gender: string;
    address: string;
    patient_blood_group: string;
}
declare class DoctorDetailsDto {
    doctorName: string;
    employee_id: string;
    gender: string;
}
export declare class PreviewDoc {
    doctor_details: DoctorDetailsDto;
    clinical_notes: ClinicalNotesResponseDto;
    prescription: PrescriptionDetailDto[];
    vitals: UpdateManualVitalDto;
}
export {};
