/** * Pipes an async iterator through a list of functions that take an async iterator * as an argument. * * @param funcs a series of functions that operate on AsyncIterables */ export declare function pipe(...funcs: Array<(iterable: AsyncIterable) => any>): (source: AsyncIterable) => AsyncIterable;