/** * Split an array into chunks of a specific size */ export declare const splitEvery: (list: readonly T[], chunkSize: number) => T[][];