/**
 * Additional functions for enhanced performance module
 * These will be integrated into the main index.ts
 */
/**
 * Get overall system health status
 */
export declare function getSystemHealthStatus(): {
    status: 'healthy' | 'degraded' | 'unhealthy';
    score: number;
    issues: string[];
    recommendations: string[];
};
/**
 * Emergency system recovery function
 */
export declare function emergencySystemRecovery(): Promise<{
    success: boolean;
    actions: string[];
    errors: string[];
}>;
//# sourceMappingURL=enhanced-index-additions.d.ts.map