import type { RedisClient } from './types'; import { Lock } from './Lock'; import { LockOptions } from './types'; export default class RedisMutex extends Lock { protected _kind: string; protected _key: string; protected _client: RedisClient; constructor(client: RedisClient, key: string, options?: LockOptions); protected _refresh(): Promise; protected _acquire(abortSignal?: AbortSignal): Promise; protected _release(): Promise; }