import { type ToolContext } from './shared.js'; import { type McpToolResult } from './result-adapter.js'; interface DecodedCallArgs { chainId: number; to: string; data: string; value?: string; } /** * MCP adapter for decoded-call signing workflow. * Delegates to signDefiCall() and converts WorkflowResult to MCP format. */ export declare function executeDecodedCallPipeline(ctx: ToolContext, toolName: string, args: DecodedCallArgs): Promise; export {};