import { z } from "zod"; import { ServiceNowClient } from "../client.js"; import { ServiceNowConfig } from "../config.js"; export declare const definition: { name: string; description: string; inputSchema: { type: "object"; properties: { check: { type: string; enum: string[]; description: string; }; }; required: never[]; }; }; export declare const schema: z.ZodObject<{ check: z.ZodDefault>>; }, "strip", z.ZodTypeAny, { check: "all" | "version" | "nodes" | "jobs" | "semaphores" | "stats"; }, { check?: "all" | "version" | "nodes" | "jobs" | "semaphores" | "stats" | undefined; }>; export declare function handler(args: z.infer, client: ServiceNowClient, config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=health.d.ts.map