import { IReadable, IWritable } from '../types.js'; /** pipe the contents of a readable stream (until it ends) into a writable stream */ export declare function pipe(into: IWritable, readable: IReadable): Promise;