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: { table: { type: string; description: string; }; query: { type: string; description: string; }; action: { type: string; enum: string[]; description: string; }; fields: { type: string; description: string; additionalProperties: boolean; }; limit: { type: string; description: string; }; confirm: { type: string; description: string; }; }; required: string[]; }; }; export declare const schema: z.ZodObject<{ table: z.ZodString; query: z.ZodString; action: z.ZodEnum<["update", "delete"]>; fields: z.ZodOptional>; limit: z.ZodDefault>; confirm: z.ZodDefault>; }, "strip", z.ZodTypeAny, { table: string; query: string; limit: number; confirm: boolean; action: "update" | "delete"; fields?: Record | undefined; }, { table: string; query: string; action: "update" | "delete"; fields?: Record | undefined; limit?: number | undefined; confirm?: boolean | undefined; }>; export declare function handler(args: z.infer, client: ServiceNowClient, _config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=batch.d.ts.map