import { Tool } from "@modelcontextprotocol/sdk/types.js"; import { NotebookLibrary } from "../../library/notebook-library.js"; /** * Build dynamic tool description for ask_question based on active notebook or library. * * The library is optional: when it is omitted (e.g. a static tool registrar that * has no library context), the "no active notebook" variant is returned as a * sensible fallback rather than a placeholder string. */ export declare function buildAskQuestionDescription(library?: NotebookLibrary): string; export declare const askQuestionTool: Tool;