/** * Cache statistics */ export interface CacheStats { totalEntries: number; totalHits: number; totalMisses: number; hitRate: number; totalSize: number; averageAccessTime: number; evictions: number; expirations: number; } //# sourceMappingURL=CacheStats.d.ts.map