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; }; fields: { type: string; description: string; additionalProperties: boolean; }; }; required: string[]; }; }; export declare const schema: z.ZodObject<{ table: z.ZodString; fields: z.ZodRecord; }, "strip", z.ZodTypeAny, { table: string; fields: Record; }, { table: string; fields: Record; }>; export declare function handler(args: z.infer, client: ServiceNowClient, _config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=create.d.ts.map