import { BDSingletProperty } from '../properties/index.js'; import { BDObject, type BDObjectOpts } from './generic/object.js'; import { ApplicationTag, BinaryPV } from '@bacnet-js/client'; export interface BDBinaryValueOpts extends BDObjectOpts { name: string; writable: boolean; description?: string; presentValue?: BinaryPV; } export declare class BDBinaryValue extends BDObject { readonly presentValue: BDSingletProperty; constructor(opts: BDBinaryValueOpts); } //# sourceMappingURL=binaryvalue.d.ts.map