import { z } from "zod"; import type { AgentDrop } from "agentdrop-sdk"; declare const schema: z.ZodObject<{ severity: z.ZodOptional>; limit: z.ZodOptional; }, "strip", z.ZodTypeAny, { limit?: number | undefined; severity?: "info" | "action_required" | "critical" | undefined; }, { limit?: number | undefined; severity?: "info" | "action_required" | "critical" | undefined; }>; export type CheckPlatformUpdatesInput = z.infer; export declare function createCheckPlatformUpdatesTool(client: AgentDrop): { name: "check_platform_updates"; description: string; schema: z.ZodObject<{ severity: z.ZodOptional>; limit: z.ZodOptional; }, "strip", z.ZodTypeAny, { limit?: number | undefined; severity?: "info" | "action_required" | "critical" | undefined; }, { limit?: number | undefined; severity?: "info" | "action_required" | "critical" | undefined; }>; handler: (input: CheckPlatformUpdatesInput) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {};