/** * Health Dashboard View * * Panel-wrapped health dashboard with grade-colored health gauge, * summary cards, critical issues panel, plugin health table with * accent bar selection, Scrollbar, EmptyState, KeyHintsBar. * * @since v2.7.18 - Visual overhaul with Panel, Scrollbar, EmptyState */ import type React from 'react'; import type { PluginHealthScore, ServerHealthSummary } from '../../core/health/index.js'; export interface HealthDashboardViewProps { summary: ServerHealthSummary | null; pluginScores: PluginHealthScore[]; loading: boolean; selectedIndex: number; contentHeight: number; lastCheck: number | null; onPluginSelect?: (pluginId: string) => void; onRefresh?: () => void; } export declare function HealthDashboardView({ summary, pluginScores, loading, selectedIndex, contentHeight, lastCheck }: HealthDashboardViewProps): React.ReactElement; //# sourceMappingURL=HealthDashboardView.d.ts.map