import { FunctionTool } from '@google/adk'; import type { Schema } from '@google/genai'; /** * Returns Stitch tools in Google ADK format. * * Each tool is pre-wired with `execute` → `callTool` against the Stitch MCP server. * Drop directly into an ADK Agent configuration. * * @example * import { stitchAdkTools } from "@google/stitch-sdk/adk"; * * const agent = new LLMAgent({ * name: "Stitch Agent", * instruction: "Create a login page", * tools: stitchAdkTools(), * }); * * @param options - Optional config * @param options.apiKey - Override STITCH_API_KEY env var * @param options.include - Only include specific tool names */ export declare function stitchAdkTools(options?: { apiKey?: string; include?: string[]; }): FunctionTool[]; //# sourceMappingURL=adk-adapter.d.ts.map