import { B1 } from './B1'; import { DPT } from '../../enums'; /** KNX DPT 1.001 — Switch (1-bit on/off). */ export declare class DPT_Switch extends B1 { readonly type: DPT; readonly unit: string; /** Send group write `1` (on). */ on(): Promise; /** Send group write `0` (off). */ off(): Promise; toString(value?: number): string; } //# sourceMappingURL=DPT_Switch.d.ts.map