import { Stream } from "@effect/core/stream/Stream/definition"; /** * Merges a variable list of streams in a non-deterministic fashion. Up to `n` * streams may be consumed in parallel and up to `outputBuffer` chunks may be * buffered by this operator. * @tsplus static effect/core/stream/Stream.Ops mergeAll * @tsplus location "@effect/core/stream/Stream/operations/mergeAll" */ export declare function mergeAll(n: number, outputBuffer?: number): (...streams: import("../definition").Stream[]) => import("../definition").Stream; //# sourceMappingURL=mergeAll.d.ts.map