/**
* Chunk an array into smaller arrays of a specified size
* @paramdata - the array to chunk
* @paramsize - the size of each chunk (default 10)
* @returns an array of smaller arrays (data[])
*/declareconstchunk: <T>(data: T[], size?: number) => T[][];
export { chunk };