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