import { BDSingletProperty } from '../properties/index.js';
import { BDObject } from './generic/object.js';
import { ApplicationTag } from '@innovation-system/node-bacnet';
export interface BDDateValueOpts {
    name: string;
    writable?: boolean;
    description?: string;
    presentValue?: Date;
}
export declare class BDDateValue extends BDObject {
    readonly presentValue: BDSingletProperty<ApplicationTag.DATE>;
    constructor(instance: number, opts: BDDateValueOpts);
}
//# sourceMappingURL=datevalue.d.ts.map