import { MsgEthereumTx, MsgEthereumTxAmino, MsgUpdateParams, MsgUpdateParamsAmino } from "./tx.js"; //#region src/ethermint/evm/v1/tx.amino.d.ts declare const AminoConverter: { "/ethermint.evm.v1.MsgEthereumTx": { aminoType: string; toAmino: (message: MsgEthereumTx) => MsgEthereumTxAmino; fromAmino: (object: MsgEthereumTxAmino) => MsgEthereumTx; }; "/ethermint.evm.v1.MsgUpdateParams": { aminoType: string; toAmino: (message: MsgUpdateParams) => MsgUpdateParamsAmino; fromAmino: (object: MsgUpdateParamsAmino) => MsgUpdateParams; }; }; //#endregion export { AminoConverter };