declare const makeArray: <T>(size: number, dataClosure: (index: number) => T) => T[];
declare const createArray: <T>(size: number, dataClosure: (index: number) => T) => T[];
declare const createArrayAsync: <T>(size: number, dataClosure: (index: number) => Promise<T>, maxConcurrency?: number) => Promise<T[]>;

export { createArray, createArrayAsync, makeArray };
