MsgEVMTransaction: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgEVMTransaction;
    encode(message: MsgEVMTransaction, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgEVMTransactionAmino): MsgEVMTransaction;
    fromAminoMsg(object: MsgEVMTransactionAminoMsg): MsgEVMTransaction;
    fromPartial(object: {
        data?: {
            $typeUrl?: string;
            typeUrl?: string;
            value?: Uint8Array;
        };
        derived?: Uint8Array;
    }): MsgEVMTransaction;
    fromProtoMsg(message: MsgEVMTransactionProtoMsg): MsgEVMTransaction;
    toAmino(message: MsgEVMTransaction): MsgEVMTransactionAmino;
    toProto(message: MsgEVMTransaction): Uint8Array;
    toProtoMsg(message: MsgEVMTransaction): MsgEVMTransactionProtoMsg;
}