import { Stream } from "@effect/core/stream/Stream/definition"; /** * Flattens a stream of streams into a stream by executing a non-deterministic * concurrent merge. Up to `n` streams may be consumed in parallel and up to * `outputBuffer` elements may be buffered by this operator. * @tsplus static effect/core/stream/Stream.Aspects flattenPar * @tsplus pipeable effect/core/stream/Stream flattenPar * @tsplus location "@effect/core/stream/Stream/operations/flattenPar" */ export declare function flattenPar(n: number, outputBuffer?: number): (self: import("../definition").Stream>) => import("../definition").Stream; //# sourceMappingURL=flattenPar.d.ts.map