/** * Zoe Gateway — Proxy tool factory * * Creates 10 gateway tools registered in the static tool registry. * Each tool delegates to MCPGateway methods. */ import type { MCPGateway } from './gateway.js'; import type { ToolModule } from '../tools/interface.js'; export declare function createGatewayTools(gateway: MCPGateway): ToolModule[];