import { DataPointAbstract } from '../DataPointAbstract'; import * as codec from './codec'; export declare abstract class B1 extends DataPointAbstract { protected valueByteLength: number; static fromBuffer: typeof codec.fromBuffer; static toBuffer: typeof codec.toBuffer; protected decode(data: Buffer): number; /** Send a group write with a numeric value (DPT-specific encoding). */ write(value: number): Promise; toString(value?: number): string; } //# sourceMappingURL=B1.d.ts.map