/**
 * Health scoring and recommendation logic
 */
import type { HealthCheck } from '../types.js';
/**
 * Calculate score based on status and value
 */
export declare function calculateScore(status: 'pass' | 'fail' | 'warn', value: number, warningThreshold: number, criticalThreshold: number): number;
/**
 * Generate recommendations based on check results
 */
export declare function generateRecommendations(checks: HealthCheck[], status: 'healthy' | 'degraded' | 'unhealthy'): string[];
//# sourceMappingURL=scoring.d.ts.map