/** * chunks provided array to specified size chunks * @example * chunk([1, 2, 3, 4], 2) * // returns [[1, 2], [3, 4]] */ export default function chunk(arr: T[], number: number): Array; //# sourceMappingURL=chunk.d.ts.map