import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Zips this chunk with the specified chunk using the specified combiner. * @tsplus static Chunk.Aspects zipWith * @tsplus pipeable Chunk zipWith * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/zipWith" */ export declare function zipWith(that: Chunk, f: (a: A, b: B) => C): (self: Chunk) => Chunk; //# sourceMappingURL=zipWith.d.ts.map