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