import type * as C from "./core.js"; /** * Feeds inputs to this sink until it yields a result, then switches over to the * provided sink until it yields a result, finally combining the two results with `f`. */ export declare function zipWith_(self: C.Sink, that: C.Sink, f: (z: Z, z1: Z1) => Z2): C.Sink; /** * Feeds inputs to this sink until it yields a result, then switches over to the * provided sink until it yields a result, finally combining the two results with `f`. * * @ets_data_first zipWith_ */ export declare function zipWith(that: C.Sink, f: (z: Z, z1: Z1) => Z2): (self: C.Sink) => C.Sink; //# sourceMappingURL=zipWith.d.ts.map