import { BaseModel } from './util'; import { TeamUser } from './team-user'; import { Game } from './game'; export declare enum GameInviteStatus { accepted = 1, declined = 2 } export declare class GameInvite extends BaseModel { id: number; teamUser: TeamUser; gameId: number; game: Game; status: GameInviteStatus; static toFront(data: any): any; static toBack(data: any): any; }