/**
 * @fileoverview Handles ELink requests and enriches results with ESummary data
 * for the getPubMedArticleConnections tool.
 * @module src/mcp-server/tools/getPubMedArticleConnections/logic/elinkHandler
 */
import { RequestContext } from "../../../../utils/index.js";
import type { GetPubMedArticleConnectionsInput } from "./index.js";
import type { ToolOutputData } from "./types.js";
export declare function handleELinkRelationships(input: GetPubMedArticleConnectionsInput, outputData: ToolOutputData, context: RequestContext): Promise<void>;
