import * as C from "./core.js"; /** * Runs both sinks in parallel on the input and combines the results * using the provided function. */ export declare function zipWithPar_(self: C.Sink, that: C.Sink, f: (z: Z, z1: Z1) => Z2, capacity?: number): C.Sink; /** * Runs both sinks in parallel on the input and combines the results * using the provided function. * * @ets_data_first zipWithPar_ */ export declare function zipWithPar(that: C.Sink, f: (z: Z, z1: Z1) => Z2, capacity?: number): (self: C.Sink) => C.Sink; //# sourceMappingURL=zipWithPar.d.ts.map