/// <reference types="node" />
/// <reference types="node" />
import { Writable } from 'stream';
export declare class StreamToString extends Writable {
    parts: Array<any>;
    constructor(options?: {});
    toBuffer(): Buffer;
    toString(): string;
}
