export declare function getCached(key: string, cwd: string): Promise; export declare function setCached(key: string, value: string, cwd: string, ttlSeconds?: number): Promise; export declare function clearCache(cwd: string): Promise; export declare function getCacheStats(cwd: string): Promise<{ entries: number; sizeKb: number; oldestEntry: string | null; }>; //# sourceMappingURL=reasoning-cache.d.ts.map