import type { ReadableWritablePair } from "./stream.js"; import { WritableStream } from "./stream.js"; /** * Pipe `pair.readable` to `writable`, then returns `pair.writable`. * * This is the opposite of `ReadableStream#pipeThrough()`. * * @param writable The `WritableStream` to write to. * @param pair A `TransformStream` that converts chunks. * @returns `pair`'s `writable` stream. */ export declare function pipeFrom(writable: WritableStream, pair: ReadableWritablePair): import("./types.js").WritableStream; //# sourceMappingURL=pipe-from.d.ts.map