/**
 * @fileoverview Registers the 'get_pubmed_article_connections' tool with the MCP server.
 * This tool finds articles related to a source PMID or retrieves citation formats.
 * @module src/mcp-server/tools/getPubMedArticleConnections/registration
 */
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
 * Registers the 'get_pubmed_article_connections' tool with the given MCP server instance.
 * @param {McpServer} server - The MCP server instance.
 */
export declare function registerGetPubMedArticleConnectionsTool(server: McpServer): Promise<void>;
