import type { ChunkArrayType } from "../types/array/chunk"; /** * Split an array into smaller chunks of specified size * @param {T} array The array to split * @param {N} n The size of each chunk * @returns Array of chunks * @example chunk([1, 2, 3, 4, 5, 6, 7, 8, 9], 3); // [[1, 2, 3], [4, 5, 6], [7, 8, 9]] */ export declare const chunk: (array: T, n: N) => ChunkArrayType;