/** * Advanced Statistics Demo for Promise Cacher * * This demo showcases the redesigned statistics() method that focuses on * metrics that users truly care about when using a cache system. * * The new statistics are organized into meaningful categories: * - Efficiency: Cache hit rates and performance gains * - Performance: Response time analytics * - Operations: Real-time operational status * - Memory: Memory usage and management * - Inventory: Cache content and usage patterns * - Health: System health and issues * - Temporal: Time-based usage patterns */ declare function demonstrateNewStatistics(): Promise; export { demonstrateNewStatistics };