import type * as C from "../core.js"; /** * Zips this stream with another point-wise and applies the function to the paired elements. * * The new stream will end when one of the sides ends. */ export declare function zipWith_(self: C.Stream, that: C.Stream, f: (a: A, a1: A1) => B): C.Stream; /** * Zips this stream with another point-wise and applies the function to the paired elements. * * The new stream will end when one of the sides ends. * * @ets_data_first zipWith_ */ export declare function zipWith(that: C.Stream, f: (a: A, a1: A1) => B): (self: C.Stream) => C.Stream; //# sourceMappingURL=zipWith.d.ts.map