import { Model } from 'sequelize'; import { IWalletModelAttributes } from '../../interfaces/walletInterface'; import { TWalletModelCreationAttributes } from '../../types/walletType'; import { COMMAN_STATUS } from '../../constants/app'; declare class WalletModel extends Model implements IWalletModelAttributes { id: string; uuid: string; status: COMMAN_STATUS; coin: number; storageInGb: number; storageInBytes: number; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: Date; static associate(models: any): void; } export default WalletModel;