import type { createCluster, createClient } from "redis"; import { BaseCache, Generation } from "../schema/index.js"; type RedisClientType = ReturnType | ReturnType; export declare class RedisCache extends BaseCache { private redisClient; constructor(redisClient: RedisClientType); lookup(prompt: string, llmKey: string): Promise; update(prompt: string, llmKey: string, value: Generation[]): Promise; } export {};