/** * CLI command: memi mcp — Start Mémoire as an MCP server (stdio transport). */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerMcpCommand(program: Command, engine: MemoireEngine): void;