import { Generation, BaseCache } from "../schema/index.js"; export declare class InMemoryCache extends BaseCache { private cache; constructor(map?: Map); lookup(prompt: string, llmKey: string): Promise; update(prompt: string, llmKey: string, value: T): Promise; static global(): InMemoryCache; }