export declare const executePromisesLimited: <T>(iterable: Iterable<any | PromiseLike<any>>, concurrencyLimit: number) => Promise<T[]>;
