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: { action: { type: string; enum: string[]; description: string; }; test_sys_id: { type: string; description: string; }; suite_sys_id: { type: string; description: string; }; suite_name: { type: string; description: string; }; execution_id: { type: string; description: string; }; query: { type: string; description: string; }; fields: { type: string; description: string; }; limit: { type: string; description: string; }; wait: { type: string; description: string; }; timeout: { type: string; description: string; }; }; required: string[]; }; }; export declare const schema: z.ZodObject<{ action: z.ZodEnum<["list", "suites", "run", "run-suite", "results"]>; test_sys_id: z.ZodOptional; suite_sys_id: z.ZodOptional; suite_name: z.ZodOptional; execution_id: z.ZodOptional; query: z.ZodOptional; fields: z.ZodOptional; limit: z.ZodDefault>; wait: z.ZodDefault>; timeout: z.ZodOptional; }, "strip", z.ZodTypeAny, { limit: number; action: "list" | "suites" | "run" | "run-suite" | "results"; wait: boolean; query?: string | undefined; fields?: string | undefined; test_sys_id?: string | undefined; suite_sys_id?: string | undefined; suite_name?: string | undefined; execution_id?: string | undefined; timeout?: number | undefined; }, { action: "list" | "suites" | "run" | "run-suite" | "results"; query?: string | undefined; fields?: string | undefined; limit?: number | undefined; test_sys_id?: string | undefined; suite_sys_id?: string | undefined; suite_name?: string | undefined; execution_id?: string | undefined; wait?: boolean | undefined; timeout?: number | undefined; }>; export declare function handler(args: z.infer, client: ServiceNowClient, _config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=atf.d.ts.map