import { Element } from './element'; export declare class Text extends Element { readonly text: string; constructor(text: string); withChildren(): this; protected getOpenTag(): string; protected getCloseTag(): string; protected getChildrenHtml(): string; private shouldWrapSpan; }