/** * Concurrent Operations Demo for Promise Cacher * * This demo specifically focuses on demonstrating the CURRENT OPERATIONS * metrics in various concurrency scenarios to help users understand: * - Active vs Queued requests * - Concurrency limits and their effects * - Peak concurrency tracking * - Request rejection scenarios */ declare function demonstrateConcurrentOperations(): Promise; export { demonstrateConcurrentOperations };