/** * Health Card Component * * Displays detailed health information for a single plugin. * * @since v1.66.0 */ import type React from 'react'; import type { HealthGrade, HealthRecommendation, PluginHealthScore } from '../../core/health/index.js'; /** * Props for HealthCard */ export interface HealthCardProps { /** Plugin health score */ score: PluginHealthScore; /** Whether to show expanded details */ expanded?: boolean; /** Callback for recommendation action */ onAction?: (recommendation: HealthRecommendation) => void; } /** * Health Card Component */ export declare function HealthCard({ score, expanded }: HealthCardProps): React.JSX.Element; /** * Compact health badge for list views */ export declare function HealthBadge({ grade, score, }: { grade: HealthGrade; score: number; }): React.JSX.Element; //# sourceMappingURL=HealthCard.d.ts.map