export {} declare global { type AirwayLookupEntry = { name: string hideIfNoSedativesUsed?: true basic?: true } type CaseDataAirwayEntryRaw = { type: AirwayType name?: string notes?: string timePlaced?: number placementComp?: boolean placementCompDetail?: string vaso?: string side?: string size?: string preOx?: string magill?: string scope?: string peep?: string maskType?: string scopeType?: string bladeSize?: string viewGrade?: string stylet?: boolean cuffed?: boolean inflated?: boolean securedWith?: string depth?: string eyeProtection?: string confirmation?: string lube?: boolean preWarmed?: boolean // for face mask sealQuality?: string connectedTo?: string maskHolder?: string // airway removal cavityClear?: boolean timeRemoved?: number removalComp?: boolean removalCompDetail?: string removalNotes?: string preRemovalSpo2?: string postRemovalSpo2?: string deflated?: boolean } type CaseDataAirwayEntry = CaseDataAirwayEntryRaw & Omit & { id: string airwayTypeName: string } type AirwayEvent = { id: string note: string time: number type: 'airwayPlaced' | 'airwayRemoved' derived: true showInEventReport: true } type AirwayReportEntry = { id: string items: [label: string, value: string][] name: string type: AirwayType timePlaced?: number timeRemoved?: number } }