export declare const makeMutex: () => { mutex(code: () => Promise | T): Promise; }; export type Mutex = ReturnType; export declare const makeKeyedMutex: () => { mutex(key: string, task: () => Promise | T): Promise; }; //# sourceMappingURL=make-mutex.d.ts.map