/**
 * @fileoverview Handles registration and error handling for the `clinicaltrials_analyze_trends` tool.
 * @module src/mcp-server/tools/analyzeTrends/registration
 */
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
 * Registers the 'clinicaltrials_analyze_trends' tool with the MCP server.
 * @param server - The MCP server instance.
 */
export declare const registerAnalyzeTrendsTool: (server: McpServer) => Promise<void>;
