export interface StringBuilder { append(arg: string): void; build(): string; } export declare const createStringBuilder: () => StringBuilder;