/**
 * 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): string;
  static getShortLabel(sensorId: number): string;
  static getValue(sensorValue: string): string;
}
