import { z } from "zod"; import type { AgentDrop } from "agentdrop-sdk"; export declare function createListSendableTool(client: AgentDrop): { name: "list_sendable"; description: string; schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; handler: () => Promise<{ content: { type: "text"; text: string; }[]; }>; };