import { U8 } from './U8'; import { DPT } from '../../enums'; import * as scalingCodec from './scaling-codec'; /** * KNX DPT 5.001 — Scaling (0–100 %, 1 byte). * * `write()` accepts a percentage; encoding uses the DPT 5.001 scaling codec. */ export declare class DPT_Scaling extends U8 { readonly type: DPT; readonly unit: string; static fromBuffer: typeof scalingCodec.fromBuffer; static toBuffer: typeof scalingCodec.toBuffer; protected decode(data: Buffer): number; write(value: number): Promise; } //# sourceMappingURL=DPT_Scaling.d.ts.map