/**
 * https://simple-statistics.github.io/docs/#chunk
 */
declare function chunk<T>(x: T[], chunkSize: number): T[][];

export default chunk;
