import type { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { NotebookLibrary } from "../library/notebook-library.js"; /** * Handlers for MCP Resource-related requests */ export declare class ResourceHandlers { private library; constructor(library: NotebookLibrary); /** * Register all resource handlers to the server */ registerHandlers(server: Server): void; /** * Return notebook IDs matching the provided input (case-insensitive contains) */ private completeNotebookIds; /** * Build a completion payload for MCP responses */ private buildCompletion; }