import { Relation } from 'typeorm';
import { BaseEntity } from '../../entities/base.entity';
import { TransactionEntity } from '../product/transaction.entity';
import { EGloResponseCode } from 'src/modules/glo/glo.enum';
export declare class GloTransactionEntity extends BaseEntity {
    ersReference?: string;
    resultCode?: EGloResponseCode;
    resultDescription?: string;
    unknownErrorOccurred?: boolean;
    requestXML: string;
    responseXML?: string;
    unknownError?: any;
    transaction?: Relation<TransactionEntity>;
    transactionId?: string;
}
export declare const gloEntities: (typeof GloTransactionEntity)[];
