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 WithdrawCtx { chainManager: ChainManager; policyGuard: PolicyGuard; txLog: TxLog; tokenRegistry: TokenRegistry; } export declare function registerWithdraw(server: MCPServer, ctx: WithdrawCtx): void; export {}; //# sourceMappingURL=withdraw.d.ts.map