import { z } from "zod"; import type { AgentDrop } from "agentdrop-sdk"; declare const schema: z.ZodObject<{ transfer_id: z.ZodString; }, "strip", z.ZodTypeAny, { transfer_id: string; }, { transfer_id: string; }>; export type GetTransferInput = z.infer; export declare function createGetTransferTool(client: AgentDrop): { name: "get_transfer"; description: string; schema: z.ZodObject<{ transfer_id: z.ZodString; }, "strip", z.ZodTypeAny, { transfer_id: string; }, { transfer_id: string; }>; handler: (input: GetTransferInput) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {};