import { ThrottleFunction } from"./ThrottleFunction.js";
/**
* The `throttleMaxConcurrency` strategy limits the number of parallel API calls.
*/exportdeclarefunctionthrottleMaxConcurrency({ maxConcurrentCalls, }: {
maxConcurrentCalls: number;
}): ThrottleFunction;