/** * Creates a concurrency limiter that ensures at most `limit` async tasks * run simultaneously. * @param concurrency The maximum number of concurrent tasks allowed. * @returns A function that wraps async tasks to enforce the concurrency limit. */ export declare function createConcurrencyLimit(concurrency: number): (fn: () => Promise) => Promise; //# sourceMappingURL=concurrencyLimit.d.ts.map