export const Client: { new (db: string, selectDb?: number | null): { _db: string; _select: number; getClient(): any; init(): Promise; finish(): Promise; scan(key?: string): Promise; keys(pattern: string): Promise; get(key: string): Promise; store(key: string, value: any, expirySeconds?: number | null): Promise; getTTL(key: string): Promise; setExpiry(key: string, expirySeconds: number | null): Promise; delete(key: string): Promise; clear(): Promise; }; }; export const utils: typeof import("./src/redis/utils"); export const clients: { getUserClient: () => Promise; getSessionClient: () => Promise; getAppClient: () => Promise; getCacheClient: () => Promise; getWritethroughClient: () => Promise; getMigrationsRedlock: () => Promise; };