import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { ILibraryOperations } from "../../features/operations/library-operations.js"; export interface CiteToolParams { ids: string[]; style?: string | undefined; format?: "text" | "html" | undefined; } /** * Register the cite tool with the MCP server. * * @param server - The MCP server instance * @param getLibraryOperations - Function to get the current library operations instance */ export declare function registerCiteTool(server: McpServer, getLibraryOperations: () => ILibraryOperations): void; //# sourceMappingURL=cite.d.ts.map