import { AbstractModel } from './abstract.model'; import { Game } from './game.model'; import dayjs from 'dayjs'; export declare class GameWish extends AbstractModel { date: dayjs.Dayjs; timestamp: number; fits: boolean; game: Game; constructor(model?: Object); }