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