export interface PatientInfo {
  patient_visit_date: string;
  patient_name: string;
  patient_age: string;
  patient_age_in_years: string;
  patient_weight: string;
  patient_bp: string;
  patient_pulse: string;
  patient_spo2: string;
  patient_temp: string;
  patient_age_text: string;
  patient_weight_text: string;
  patient_mobile: string;
  hospitalId: string;
  patient_gender: number;
}

export interface CreatePrescriptionPayload {
  visit_date_local: string;
  patient_diagnosis: string;
  patient_investigation: string;
  list_symptoms: string[];
  medicineIds: string[];
  patient_info: PatientInfo;
}