import { z } from "zod"; import type { AgentDrop } from "agentdrop-sdk"; export declare function createListConnectionsTool(client: AgentDrop): { name: "list_connections"; description: string; schema: z.ZodObject<{ status: z.ZodOptional>; }, "strip", z.ZodTypeAny, { status?: "active" | "pending" | "all" | undefined; }, { status?: "active" | "pending" | "all" | undefined; }>; handler: (params: { status?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };