export declare class ConcurrencyManager { private readonly limit; private counts; private queues; constructor(limit?: number); acquire(key: string): Promise; release(key: string): void; getCount(key: string): number; getQueueLength(key: string): number; }