import { z } from "zod"; import type { AgentDrop } from "agentdrop-sdk"; declare const schema: z.ZodObject<{ status: z.ZodOptional>; limit: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: "active" | "expired" | "deleted" | undefined; limit?: number | undefined; }, { status?: "active" | "expired" | "deleted" | undefined; limit?: number | undefined; }>; export type CheckInboxInput = z.infer; export declare function createCheckInboxTool(client: AgentDrop): { name: "check_inbox"; description: string; schema: z.ZodObject<{ status: z.ZodOptional>; limit: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: "active" | "expired" | "deleted" | undefined; limit?: number | undefined; }, { status?: "active" | "expired" | "deleted" | undefined; limit?: number | undefined; }>; handler: (input: CheckInboxInput) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {};