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