export {} declare global { type CheckpointVitalValueSource = | 'manual' | 'auto' | 'previous' | 'calculated' | 'override' type CheckpointValueVital = { previousValue?: number startValueForVital?: number | string autoValue?: number | string autoValueTime?: number connectionId?: string monitorType?: string recordedValue?: number | string value: number | string | null valueSource: CheckpointVitalValueSource } type Checkpoint = { id: string extra: boolean time: number isFirst: boolean isLast: boolean selected: boolean vitalsInUse: DecoratedIndividualVitalType[] values: { [id: string]: CheckpointValueVital } isComplete: boolean hasAllRelevantValues: boolean hasAnySelectedVitals: boolean isBlank: boolean } }