import { ParSeq } from "@tsplus/stdlib/collections/ParSeq/definition"; /** * Combines this collection of events with that collection of events to * return the Cartesian product of events using the specified function. * @tsplus static ParSeq.Aspects zipWith * @tsplus pipeable ParSeq zipWith * @tsplus location "@tsplus/stdlib/collections/ParSeq/zipWith" */ export declare function zipWith(that: ParSeq, f: (a: A, b: B) => C): (self: ParSeq) => ParSeq; //# sourceMappingURL=zipWith.d.ts.map