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