/// import * as stream from "stream"; export declare class StringStream extends stream.Readable { content: string; file: string; constructor(content: string, fileName?: string); _read(size: number): void; }