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