/** * Create a mock MCP server for testing */ export declare class MockMcpServer { private config; private server; constructor(config: { name: string; version: string; tools?: Array<{ name: string; description?: string; inputSchema?: unknown; handler: (args: unknown) => Promise; }>; }); private setupHandlers; getConnectConfig(): { command: string; args: string[]; type: "stdio"; }; private getServerScript; } /** * In-memory test server using memory transport * More efficient, no need to spawn child processes */ export declare class InMemoryMcpServer { constructor(); } //# sourceMappingURL=sdk-test-helpers.d.ts.map