/** * TextAccumulator collects bits and pieces of textual content * received as a sequence of buffers. */ export declare class TextAccumulator extends Array { /** ToString returns the currently accumulated text. */ toString(): string; }