import { B1 } from './B1'; import { DPT } from '../../enums'; /** KNX DPT 1.008 — Up/Down (1-bit step direction). */ export declare class DPT_UpDown extends B1 { readonly type: DPT; readonly unit: string; /** Send group write `1` (down). */ down(): Promise; /** Send group write `0` (up). */ up(): Promise; toString(value?: number): string; } //# sourceMappingURL=DPT_UpDown.d.ts.map