declare const promiseAllLimit: <T>(array: any[], iterator: (item: any) => Promise<T>, limit: number) => Promise<T[]>;

export { promiseAllLimit };
