import { TelescopeGeneratedType } from "../../../../types.js"; import { MsgEthereumTx, MsgRegisterPreinstalls, MsgUpdateParams } from "./tx.js"; //#region src/cosmos/evm/vm/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; }; registerPreinstalls(value: MsgRegisterPreinstalls): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { ethereumTx(value: MsgEthereumTx): { typeUrl: string; value: MsgEthereumTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; registerPreinstalls(value: MsgRegisterPreinstalls): { typeUrl: string; value: MsgRegisterPreinstalls; }; }; fromPartial: { ethereumTx(value: MsgEthereumTx): { typeUrl: string; value: MsgEthereumTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; registerPreinstalls(value: MsgRegisterPreinstalls): { typeUrl: string; value: MsgRegisterPreinstalls; }; }; }; //#endregion export { MessageComposer, registry };