import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Zips this chunk with the specified chunk to produce a new chunk with * pairs of elements from each chunk, filling in missing values from the * shorter chunk with `None`. The returned chunk will have the length of the * longer chunk. * @tsplus static Chunk.Aspects zipAll * @tsplus pipeable Chunk zipAll * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/zipAll" */ export declare function zipAll(that: Chunk): (self: import("../definition").Chunk) => import("../definition").Chunk, import("../../../data/Maybe").Maybe]>; //# sourceMappingURL=zipAll.d.ts.map