/** * Minimal CLI wrapper around two of the most-used MCP tools, for scripting, * CI integration, and demos. The MCP server is the primary interface; this * is a convenience layer that calls the same tool functions directly without * a stdio roundtrip. * * Usage: * memorydetective analyze [--json] * memorydetective classify [--json] * memorydetective --help * memorydetective --version */ export declare function runCli(args: string[]): Promise;