import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { ILibraryOperations } from "../../features/operations/library-operations.js"; /** * Parameters for the remove tool */ export interface RemoveToolParams { /** Reference ID to remove */ id: string; /** Must be true to actually remove (safety measure) */ force: boolean; } /** * Register the remove tool with the MCP server. * * @param server - The MCP server instance * @param getLibraryOperations - Function to get the current library operations instance */ export declare function registerRemoveTool(server: McpServer, getLibraryOperations: () => ILibraryOperations): void; //# sourceMappingURL=remove.d.ts.map