/** Central tool registry — SDK tool definitions via registerSdkTools. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { AppContext } from "../context/app-context.js"; import { type RegisterToolsOptions } from "./sdk-register.js"; export type { RegisterToolsOptions }; /** Register every Celina tool on the MCP server from @andrewkimjoseph/celina-sdk/tools. */ export declare function registerAllTools(server: McpServer, ctx: AppContext, options?: RegisterToolsOptions): void;