import type * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Maps over elements of the stream with the specified effectful function, * executing up to `n` invocations of `f` concurrently. The element order * is not enforced by this combinator, and elements may be reordered. */ export declare function mapEffectParUnordered_(self: C.Stream, n: number, f: (a: A) => T.Effect): C.Stream; /** * Maps over elements of the stream with the specified effectful function, * executing up to `n` invocations of `f` concurrently. The element order * is not enforced by this combinator, and elements may be reordered. * * @ets_data_first mapEffectParUnordered_ */ export declare function mapEffectParUnordered(n: number, f: (a: A) => T.Effect): (self: C.Stream) => C.Stream; //# sourceMappingURL=mapEffectParUnordered.d.ts.map