import { Sequence } from "../../sequency"; export declare class Chunk { /** * Splits the elements of the sequence into arrays which length is determined by * the given `chunkSize` and returns all chunks as array. * * @param {number} chunkSize * @returns {T[][]} */ chunk(this: Sequence, chunkSize: number): T[][]; }