import { type Chain, PluginBase, type ToolBase } from "../../core"; import type { EVMWalletClient } from "../../wallets/evm"; export declare class CalldataDecoderPlugin extends PluginBase { constructor(); supportsChain(chain: Chain): boolean; getTools(_walletClient: EVMWalletClient): ToolBase[]; } export declare function createCalldataDecoderPlugin(): CalldataDecoderPlugin;