import { IToXmlOptions } from '../options.ts'; import { IElement } from '../util.ts'; import { Value } from '../value.ts'; /** * ValueData object. */ export declare class ValueData extends Value { /** * Value type. */ static readonly TYPE = "data"; /** * Tag names. */ static readonly TAG_NAMES: string[]; /** * Value value. */ value: Uint8Array; /** * ValueData constructor. * * @param value The value. */ constructor(value?: Uint8Array); /** * @inheritdoc */ fromXmlElement(element: Readonly): void; /** * @inheritdoc */ toXml(options?: Readonly | null, depth?: number): string; }