import { U8 } from './U8'; import { DPT } from '../../enums'; /** * KNX DPT 20.102 — HVAC mode (comfort, economy, frost protection, …). * * Use static constants (`AUTO`, `COMFORT`, …) with `write()`. */ export declare class DPT_HVACMode extends U8 { readonly type: DPT; readonly unit: string; /** HVAC mode: frost protection. */ static readonly FROST_PROTECTION = 4; /** @deprecated Use FROST_PROTECTION */ static readonly FROST_PROTECION = 4; /** HVAC mode: economy. */ static readonly ECONOMY = 3; /** HVAC mode: standby. */ static readonly STANDBY = 2; /** HVAC mode: comfort. */ static readonly COMFORT = 1; /** HVAC mode: auto. */ static readonly AUTO = 0; toString(value?: number): string; } //# sourceMappingURL=DPT_HVACMode.d.ts.map