import { Model } from 'sequelize'; import { IUserHasStorageModelAttributes } from '../../interfaces/userHasStorageInterface'; import { TUserHasStorageModelCreationAttributes } from '../../types/userHasStorageType'; import { WALLET_HISTORY_ACTION } from '../../constants/app'; declare class UserHasStorageModel extends Model { id: string; userId: string; walletId: string; walletTransactionId: string; storageInGb: number; storageInBytes: number; action: WALLET_HISTORY_ACTION; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default UserHasStorageModel;