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"; interface SendTransactionCtx { chainManager: ChainManager; policyGuard: PolicyGuard; txLog: TxLog; } export declare function registerSendTransaction(server: MCPServer, ctx: SendTransactionCtx): void; export {}; //# sourceMappingURL=send-transaction.d.ts.map