import { type MutexInterface } from 'async-mutex';
export declare function getMutex(key: string, namespace?: string): MutexInterface;
export declare function acquireLock(key: string, namespace?: string): Promise<MutexInterface.Releaser>;
