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: { text: { type: string; description: string; }; execute: { type: string; description: string; }; confirm: { type: string; description: string; }; force: { type: string; description: string; }; }; required: string[]; }; }; export declare const schema: z.ZodObject<{ text: z.ZodString; execute: z.ZodDefault>; confirm: z.ZodDefault>; force: z.ZodDefault>; }, "strip", z.ZodTypeAny, { text: string; confirm: boolean; execute: boolean; force: boolean; }, { text: string; confirm?: boolean | undefined; execute?: boolean | undefined; force?: boolean | undefined; }>; export declare function handler(args: z.infer, client: ServiceNowClient, config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=nl.d.ts.map