/**
 * Creates chunks of the given array with specified size
 * @param array The array to create chunks from
 * @param chunkSize The size of each chunk
 * @returns An array of chunks
 */
export declare function createChunks<T>(array: T[], chunkSize: number): T[][];
