import AwaitLocker from './await_lock'; export declare function getLocker(key: string): AwaitLocker; export declare function lock(key: string): Promise; export declare function release(key: string): void; export declare function isLocking(key: string): boolean;