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