/** * Splits an array into chunks of a specified size. * * @template T The type of elements in the array. * @param {T[]} array - The array to split. * @param {number} size - The maximum size of each chunk. * @returns {T[][]} An array of arrays, each containing a chunk of the original array. */ export declare const chunkArray: (array: T[], size: number) => T[][]; //# sourceMappingURL=number.d.ts.map