import type { AgentAdapter } from "../types/agent.js"; /** * Gemini adapter. Uses `gemini --acp` to launch Gemini CLI in Agent Client * Protocol mode over stdio, giving us structured tool calls, plans, and * permissions instead of ad-hoc NDJSON. * * MCP servers are passed through the ACP `session/new` call rather than * written to settings.json. */ export declare function createGeminiAdapter(): AgentAdapter; //# sourceMappingURL=gemini.d.ts.map