import { DataPointAbstract } from '../DataPointAbstract'; import { KnxDateTime } from './types'; export declare abstract class DateTime extends DataPointAbstract { protected valueByteLength: number; protected decode(data: Buffer): KnxDateTime; write(value: KnxDateTime): Promise; toString(value?: KnxDateTime): string; } //# sourceMappingURL=DateTime.d.ts.map