import { TelescopeGeneratedType } from "../../../types.js"; import { MsgEthereumTx, MsgUpdateParams } from "./tx.js"; //#region src/ethermint/evm/v1/tx.registry.d.ts declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; declare const MessageComposer: { encoded: { ethereumTx(value: MsgEthereumTx): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { ethereumTx(value: MsgEthereumTx): { typeUrl: string; value: MsgEthereumTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { ethereumTx(value: MsgEthereumTx): { typeUrl: string; value: MsgEthereumTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; }; //#endregion export { MessageComposer, registry };