import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { AdoClient } from "../providers/ado-client.js"; import type { Config } from "../config/index.js"; /** * fetch_work_item_attachments — Phase 0 / Discovery * * Downloads ALL attachments from a work item: * - Images → returned as MCP image content (LLM can see them) * - Text files (logs, .txt, .json, .xml, .csv) → returned as text content * - Other files → reported but not downloaded * * Separate from fetch_work_item to keep that tool fast when * attachments aren't needed. */ export declare function registerFetchWorkItemAttachments(server: McpServer, adoClient: AdoClient, config: Config): void; //# sourceMappingURL=fetch-work-item-attachments.d.ts.map