/** * Performance optimization: LRU Cache for validation results * Reduces redundant validation calls for the same class names */ export declare class PerformanceCache { private cache; private maxSize; constructor(maxSize?: number); get(key: K): V | undefined; set(key: K, value: V): void; has(key: K): boolean; clear(): void; get size(): number; } //# sourceMappingURL=PerformanceCache.d.ts.map