import { U8 } from './U8'; import { DPT } from '../../enums'; import { HVACContrMode } from './HVACContrMode'; /** * KNX DPT 20.105 — HVAC controller mode. * * Use {@link setMode} / {@link readMode} or `write()` with {@link MODE} enum values. */ export declare class DPT_HVACContrMode extends U8 { readonly type: DPT; readonly unit: string; /** Enum of supported HVAC controller modes. */ static readonly MODE: typeof HVACContrMode; /** Write the HVAC controller mode. */ setMode(mode: HVACContrMode): Promise; /** Read the current HVAC controller mode. */ readMode(): Promise; } //# sourceMappingURL=DPT_HVACContrMode.d.ts.map