import { B1 } from './B1'; import { DPT } from '../../enums'; /** KNX DPT 1.010 — Start/Stop (1-bit start or stop). */ export declare class DPT_StartStop extends B1 { readonly type: DPT; readonly unit: string; /** Send group write `1` (start). */ start(): Promise; /** Send group write `0` (stop). */ stop(): Promise; toString(value?: number): string; } //# sourceMappingURL=DPT_StartStop.d.ts.map