/** * @author Thomas Barnekow * @license MIT */ import { XNode } from './internal.js'; /** * Represents a text node. */ export declare class XText extends XNode { constructor(value: string); get value(): string; set value(text: string); toString(): string; }