import type { Tool } from "ai"; /** * Returns Stitch tools in Vercel AI SDK format. * * Each tool is pre-wired with `execute` → `callTool` against the Stitch MCP server. * Drop directly into `generateText({ tools: stitchTools(), ... })`. * * @example * import { generateText } from "ai"; * import { stitchTools } from "@google/stitch-sdk"; * * const { text } = await generateText({ * model: "google/gemini-2.5-pro", * tools: stitchTools(), * prompt: "Create a login page", * maxSteps: 5, * }); * * @param options - Optional config * @param options.apiKey - Override STITCH_API_KEY env var * @param options.include - Only include specific tool names */ export declare function stitchTools(options?: { apiKey?: string; include?: string[]; }): Record; //# sourceMappingURL=tools-adapter.d.ts.map