import AwaitLocker from "./await_locker"; declare class Lockers { _map: Map; constructor(); getLocker(key: string): AwaitLocker; lock(key: string, timeout?: number): Promise; release(key: string): void; remove(key: string): void; isLocking(key: string): boolean; } declare const lockers: Lockers; export default lockers;