import type { Effect } from "./effect.js"; /** * Sequentially zips this effect with the specified effect using the * specified combiner function. */ export declare function zipWithPar_(a: Effect, b: Effect, f: (a: A, b: A2) => B, __trace?: string): Effect; /** * Sequentially zips this effect with the specified effect using the * specified combiner function. */ export declare function zipWithPar(b: Effect, f: (a: A, b: A2) => B, __trace?: string): (a: Effect) => Effect; //# sourceMappingURL=zipWithPar.d.ts.map