export type McpTool = { name: string; description?: string; inputSchema?: unknown; }; export declare function listStdioTools(commandLine: string): Promise; export declare function callStdioTool(commandLine: string, toolName: string, args: Record): Promise; export declare function splitCommandLine(commandLine: string): string[]; export declare function extractMcpContent(content: unknown): unknown;