export {} declare global { type CaseEventBase = { id: string note: string showInEventReport?: true required?: boolean derived?: true maxTimeName?: CaseEventType minTimeName?: CaseEventType | 'lastSedativeDose' preReq?: CaseEventType } type CaseEventProcessed = CaseEventBase & { time: number | null canSet: boolean min: number | null max: number | null static: true } type ManualVitalsEvent = CaseEventBase & { time: number explanation: string static: true type: 'manualVital' canSet: false showInEventReport: true derived: true } type CustomCaseEvent = CustomCaseEventRaw & { id: string } type FinalEventsReport = { id: string time: number note: string /** * @remarks * This is the lookup number shown in the triangle on the report it's just a * 1 based index. */ number: number } }