export type AsyncLock = { release: () => void; acquire: () => Promise; }; export declare function asyncLock(): AsyncLock;