import { Model } from 'sequelize-typescript'; import { LegacyTxTypes, TxStatus } from '../utils/enums'; import { TxFee } from './txFee'; export declare class Tx extends Model { id: number; hash: string; timestamp: Date; status: TxStatus; type: LegacyTxTypes; fee: TxFee; data: object; nonce: number; code: number; message: string; blockId: number; from: string; to: string; createdAt: Date; updatedAt: Date; }