/** * Creates an array of elements split into groups the length of `size`. If `list` can't be split evenly, the final chunk will be the remaining elements. * * @param {Array} [list] The array of elements to split * @param {number} [size] the length of the groups */ export declare function chunk(list: T[], size: number): T[][]; //# sourceMappingURL=index.d.ts.map