import { TextWriterBase } from "./TextWriterBase"; import { Converter } from "./Converter"; export declare class StringBuilder extends TextWriterBase { private _data; constructor(converter?: Converter); writeText(text: string): void; toString(): string; clear(): void; } export declare function format(format: string, ...args: any): string;