export default class Redis { private _host; private _client; constructor(_host: string); close(): Promise; has(key: string): Promise; get(key: string): Promise; getMany(keys: string[]): Promise; dropAll(): Promise; set(key: string, value: string, expiresInSeconds?: number): Promise; getSet(key: string, value: string): Promise; isLocked(key: string, expiration?: number): Promise; remove(key: string): Promise; setExpire(key: string, seconds: number): Promise; }