import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const GetSystemHealthSchema: z.ZodObject<{ include_cli_status: z.ZodOptional; }, "strip", z.ZodTypeAny, { include_cli_status?: boolean | undefined; }, { include_cli_status?: boolean | undefined; }>; export declare function getSystemHealthTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { include_cli_status: { type: string; description: string; }; }; required: never[]; }; handler: (args: unknown) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; }; //# sourceMappingURL=get-system-health.d.ts.map