/** * stitch tool — calls the Google Stitch MCP server. * * The LLM uses this to manage UI/UX design projects on Stitch: * - List the user's projects * - Read screens within a project * - Download assets (images, HTML) * - Generate a new screen from a text prompt * * Auth: API key from ~/.compact-agent/stitch.json or STITCH_API_KEY env var. * Configure with `/stitch-config ` inside the REPL. */ import type { Tool } from './types.js'; export declare const StitchTool: Tool;