/** * Agent adapter: Kiro * * MCP config : .kiro/settings/mcp.json (project-level, checked into git) * Hint file : AGENTS.md (Claude Code reads this automatically each session) * * Docs: https://docs.anthropic.com/en/docs/claude-code/mcp */ import type { IUi } from "../ui.js"; import type { AgentPreset } from "./types.js"; export declare const preset: AgentPreset; interface InitParams { ui: IUi; cwd: string; } export declare function init({ ui, cwd }: InitParams): Promise; export {};