/**
 * A really simple string buffer.
 *
 * This is not at all for performance reasons and instead just to match
 * the existing poet code/pattern.
 */
export declare class StringBuffer {
    private strings;
    append(s: string): this;
    toString(): string;
}
