import type { MCPServer } from "@lynq/lynq"; import type { ChainManager } from "../chain/manager.js"; import type { PolicyGuard } from "../guard/policy-guard.js"; import type { TxLog } from "../log/tx-log.js"; import type { TokenRegistry } from "../token/registry.js"; interface SendTokenCtx { chainManager: ChainManager; policyGuard: PolicyGuard; txLog: TxLog; tokenRegistry: TokenRegistry; } export declare function registerSendToken(server: MCPServer, ctx: SendTokenCtx): void; export {}; //# sourceMappingURL=send-token.d.ts.map