/** * `soleri chat` — interactive terminal chat with your agent. * * Spawns the agent's MCP server, connects via stdio JSON-RPC, * and runs an interactive REPL using the agent loop. * * No external dependencies — MCP client is a minimal JSON-RPC/stdio * implementation, Anthropic API is called via the core agent loop. */ import type { Command } from 'commander'; export declare function registerChat(program: Command): void;