/**
 * Health Status Tool
 *
 * Provides comprehensive system health monitoring for hive-ai.
 * Displays OpenRouter connectivity, database health, model availability, and error statistics.
 */
import { z } from "zod";
export declare const HealthStatusToolSchema: z.ZodObject<{
    detailed: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    detailed: boolean;
}, {
    detailed?: boolean | undefined;
}>;
export declare function runHealthStatusTool(args: z.infer<typeof HealthStatusToolSchema>): Promise<{
    result: string;
}>;
export declare const healthStatusToolName = "health_status";
export declare const healthStatusToolDescription = "Check system health including OpenRouter connectivity, database status, and error statistics";
//# sourceMappingURL=health-status.d.ts.map