import { ApplicationTag } from '@bacnet-js/client'; import { BDTemporalObject, type BDTemporalValueOpts } from './temporal.js'; export interface BDDateTimeValueOpts extends BDTemporalValueOpts { name: string; writable?: boolean; description?: string; presentValue?: Date; } export declare class BDDateTimeValue extends BDTemporalObject { constructor(opts: BDDateTimeValueOpts); } //# sourceMappingURL=datetimevalue.d.ts.map