import { Model } from 'sequelize-typescript'; import { typeReward } from '../utils/enums'; export declare class Reward extends Model { id: number; type: typeReward; value: string; currency: string; validatorId: string; addressId: string; date: Date; }