MsgEVMTransactionResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgEVMTransactionResponse;
    encode(message: MsgEVMTransactionResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgEVMTransactionResponseAmino): MsgEVMTransactionResponse;
    fromAminoMsg(object: MsgEVMTransactionResponseAminoMsg): MsgEVMTransactionResponse;
    fromPartial(object: {
        gasUsed?: bigint;
        hash?: string;
        returnData?: Uint8Array;
        vmError?: string;
    }): MsgEVMTransactionResponse;
    fromProtoMsg(message: MsgEVMTransactionResponseProtoMsg): MsgEVMTransactionResponse;
    toAmino(message: MsgEVMTransactionResponse): MsgEVMTransactionResponseAmino;
    toProto(message: MsgEVMTransactionResponse): Uint8Array;
    toProtoMsg(message: MsgEVMTransactionResponse): MsgEVMTransactionResponseProtoMsg;
}