import { SensorId } from "./types"; /** * Class with helper functions to get sensor labels and to translate raw values into human readable ones */ export declare class sensorInfo { static getLabel(sensorId: number, locale?: string): any; static getShortLabel(sensorId: number, locale?: string): any; static getValue(sensorValue: string | number, sensorId: SensorId, locale?: string): any; }