declare function chunk<T>(arr: readonly T[], size: number): T[][];

export { chunk };
