import { Redis } from "ioredis"; import { BaseCache, Generation } from "../schema/index.js"; export declare class RedisCache extends BaseCache { private redisClient; constructor(redisClient: Redis); lookup(prompt: string, llmKey: string): Promise; update(prompt: string, llmKey: string, value: Generation[]): Promise; }