/**
 * Execute a function on array items with limited concurrency
 * This implementation avoids stack overflow, race conditions, and type safety issues
 */
export declare function parallelMapLimit<T, R>(arr: T[], limit: number, fn: (item: T) => Promise<R>): Promise<R[]>;
//# sourceMappingURL=concurrency.d.ts.map