import { Stream } from "@effect/core/stream/Stream/definition"; /** * Maps each element of this stream to another stream and returns the * non-deterministic merge of those streams, executing up to `n` inner streams * concurrently. Up to `bufferSize` elements of the produced streams may be * buffered in memory by this operator. * @tsplus static effect/core/stream/Stream.Aspects flatMapPar * @tsplus pipeable effect/core/stream/Stream flatMapPar * @tsplus location "@effect/core/stream/Stream/operations/flatMapPar" */ export declare function flatMapPar(n: number, f: (a: A) => Stream, bufferSize?: number): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=flatMapPar.d.ts.map