import { RedisClient } from 'redis'; export declare class TiraRedisClient { client?: RedisClient; constructor(option?: { host: string; port: number; password: string; database: string; }); set(type: string, key: string, value: any): Promise; setex(type: string, key: string, seconds: number, value: any): Promise; get(type: string, key: string): Promise; del(type: string, key: string): Promise; expire(type: string, key: string, seconds: number): Promise; mget(type: string, keys: string[]): Promise; }