import type { Chunk } from "../definition.js"; /** * Zips this chunk with the specified chunk using the specified combiner. */ export declare function zipWith_(self: Chunk, that: Chunk, f: (a: A, b: B) => C): Chunk; /** * Zips this chunk with the specified chunk using the specified combiner. * * @ets_data_first zipWith_ */ export declare function zipWith(that: Chunk, f: (a: A, b: B) => C): (self: Chunk) => Chunk; //# sourceMappingURL=zipWith.d.ts.map