/** * Backend platform tools entry — aggregates every domain's tool list and * exposes the factory functions used by the MCP/daemon servers. */ import type { Tool } from '../../../tools'; import { BackendToolSessionContext } from './context'; import { BackendToolExecutor } from './tool-executor'; export declare const tools: Tool[]; export declare function createToolSessionContext(sessionIdProvider: () => string): Promise; export declare function createToolExecutor(): BackendToolExecutor;