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: { code: { type: string; description: string; }; scope: { type: string; description: string; }; timeout: { type: string; description: string; }; confirm: { type: string; description: string; }; }; required: string[]; }; }; export declare const schema: z.ZodObject<{ code: z.ZodString; scope: z.ZodDefault>; timeout: z.ZodDefault>; confirm: z.ZodDefault>; }, "strip", z.ZodTypeAny, { code: string; confirm: boolean; timeout: number; scope: string; }, { code: string; confirm?: boolean | undefined; timeout?: number | undefined; scope?: string | undefined; }>; export declare function handler(_args: z.infer, _client: ServiceNowClient, _config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=script.d.ts.map