export type Mutex = { lock: () => Promise; unlock: () => Promise; }; export declare function createMutex(): Mutex;