import { Stream, Readable } from "node:stream"; import { Buffer } from "node:buffer"; export declare const finishedAsync: (src: any) => Promise; export declare const pipelineAsync: (...src: Stream[]) => Promise; export declare function readToBuffer(stream: Stream): Promise; export declare function readToEnd(readable: Readable | Stream): Promise; export declare function bufferToReadable(b: Buffer): Readable; export declare function stringToReadable(s: string): Readable; //# sourceMappingURL=StreamUtil.d.ts.map