export declare class StringWrapper {
    contents: string;
    constructor();
    toString(): string;
    append(text: string): void;
}
