interface MCPRequest { jsonrpc: "2.0"; id: number; method: string; params: Record; } export declare const createMCPRequest: (method: string, params: Record, id?: number) => MCPRequest; export declare const createMCPToolCall: (name: string, args: Record, id?: number) => MCPRequest; export declare const createMCPListToolsRequest: (id?: number) => MCPRequest; interface MCPResponse { content: Array<{ type: string; text: string; }>; isError?: boolean; } export declare const expectMCPResponse: (response: MCPResponse) => void; export declare const expectMCPError: (response: MCPResponse) => void; export {}; //# sourceMappingURL=test-utils.d.ts.map