/**
 * Main exports for the CDP Vercel AI SDK package
 */
import { AgentKit } from "@coinbase/agentkit";
import { type ToolSet } from "ai";
/**
 * Get Vercel AI SDK tools from an AgentKit instance
 *
 * @param agentKit - The AgentKit instance
 * @returns An array of Vercel AI SDK tools
 */
export declare function getVercelAITools(agentKit: AgentKit): ToolSet;
