export {} declare global { type HhxPhysicalField = | 'height' | 'height_raw' | 'weight' | 'weight_raw' | 'asaClassification' | 'lungAuscultation' | 'heartAuscultation' type HhxAllergyField = 'allergiesSummary' type HhxMedicationsField = 'medications' | 'medicationsText' type HhxSurgicalHistoryField = | 'hospitalizationSummary' | 'surgicalHistorySummary' | 'anesthesiaHistorySummary' | 'familyAnesthesiaHistorySummary' type HhxSystemsField = 'systemsReview' | 'systemsReviewSkipped' type HhxAirwayField = 'mallampati' | 'brodsky' | 'ulbt' | 'tmd' | 'iid' type HhxConsultField = 'medicalConsult' | 'medicalConsultNotes' type HhxFinalSignatureField = | 'finalReportSignatureTime' | 'finalReportSignature' | 'finalReportSignerName' type HhxPatientMeasurementField = 'pm' type HhxNotes = 'healthHistorySummary' | 'healthHistoryNotes' type HhxFieldWithoutFinal = | HhxPhysicalField | HhxPatientMeasurementField | HhxAllergyField | HhxMedicationsField | HhxSurgicalHistoryField | HhxSystemsField | HhxAirwayField | HhxConsultField | HhxNotes type HhxField = HhxFieldWithoutFinal | HhxFinalSignatureField type HhxData = Pick }