import type * as T from "../../../../Effect/index.js"; import * as C from "../core.js"; /** * Maps over elements of the stream with the specified effectful function, * executing up to `n` invocations of `f` concurrently. Transformed elements * will be emitted in the original order. * * @note This combinator destroys the chunking structure. It's recommended to use rechunk afterwards. */ export declare function mapEffectPar(self: C.Stream, f: (a: A) => T.Effect, n: number): C.Stream; //# sourceMappingURL=mapEffectPar.d.ts.map