export type SubcommandResult = { code: number; lines: string[]; }; /** `harness mcp ls [path]` — list MCP servers + tools declared. */ export declare function mcpLs(args: string[]): Promise; /** * `harness mcp invoke --args= [path]` — dispatch * a tool through the kernel-style claim check and print the outcome. * * We re-use the TS ToolDispatcher here. For a real-world harness this * would talk to the actual MCP server over stdio/HTTP; the CLI command * is the same shape so users learn the dispatch model without bringing * up infrastructure. */ export declare function mcpInvoke(args: string[]): Promise; /** Top-level dispatcher for `harness mcp ...`. */ export declare function mcpDispatch(args: string[]): Promise; //# sourceMappingURL=mcp-cmd.d.ts.map