/** * ConfigView Component * * Displays current configuration (read-only) */ import type React from 'react'; import type { FeaturesConfig, PluginatorConfig } from '../../core/types/config.js'; export interface CacheStats { entries: number; hits: number; misses: number; hitRate: number; sizeBytes?: number; } export interface ConfigViewProps { config: PluginatorConfig; features?: FeaturesConfig; themeName?: string; sourceCount?: number; pluginCount?: number; maxHeight?: number; cacheStats?: CacheStats; } export declare function ConfigView({ config, features, themeName, sourceCount, pluginCount, maxHeight, cacheStats }: ConfigViewProps): React.ReactElement; //# sourceMappingURL=ConfigView.d.ts.map