import { Entity } from '../../entity'; import { TxStatus, TxType } from '../../../constants'; import { StatusAudit } from './StatusAudit.entity'; import { Trade } from './Trade.entity'; import { Block } from './Block.entity'; export declare class BaseTx extends Entity { txType: TxType; signature: string; creatorPK: string; blockchain: string; token: string; status: TxStatus; statusAudits: StatusAudit[]; mintAddress?: string; curveAddress?: string; trade: Trade | null; block: Block | null; error?: string; sessionHash?: string; }