import { BaseEntity } from "./base-entity"; export type patientPositionType = 'Lying down' | 'Sitting down' | 'Standing up'; export declare function isPatientPositionType(value: any): value is patientPositionType; export declare class DataCollection extends BaseEntity { patientPosition?: patientPositionType; timestamp?: Date; meanIcpMmhg?: number; bloodPressureMmhg?: string; bodyTemperatureCelsius?: number; userFeeling?: string; constructor(deviceDataId: string, timestamp?: Date, meanIcpMmhg?: number, bloodPressureMmhg?: string, bodyTemperatureCelsius?: number, userFeeling?: string, patientPosition?: patientPositionType); /** * Returns the properties of this instance stored in an array. * * The indices of the array contain: * * 0: time * * 1: icpValue */ createTimeIcpPair(): any[]; createTimeSystolicPair(): any[]; createTimeDiastolicPair(): any[]; createTimeFeelingPair(): any[]; createTimeBodyTemperaturePair(): any[]; createPositionPair(): any[]; }