import type { MapInterface } from './types'; /** * Creates an LRU cache for service instances * * @param max Maximum number of entries before LRU eviction (default: 100) * @returns LRU cache instance optimized for service caching * * Note: tiny-lru is optimal for this use case because: * - Lightweight (~2KB) * - Fast O(1) operations * - Simple LRU eviction * - No unnecessary features (TTL, async, etc.) */ export declare function createServiceCache(max?: number): MapInterface;