import type { FieldValue } from "./field-value.js"; export declare class TextValue extends String implements FieldValue { private original; constructor(original: string); getOriginal(): string; getHTMLSafe(): string; getRestAPIValue(): string; toString(): string; }