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