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