import { BaseModel } from './util'; import { Game } from './game'; import { OrganizationBill } from './organization-bill'; export declare enum GameBillStatuses { pending = 1, paid = 2, canceled = 3 } export declare const GameBillStatusLocalization: { "ru-RU": { 1: string; 2: string; 3: string; }; "en-US": { 1: string; 2: string; 3: string; }; }; export declare class GameBill extends BaseModel { id: number; game: Game; organizationBill: OrganizationBill; status: GameBillStatuses; price: number; paidDate: Date; createdAt: Date; static toFront(data: any): any; static toBack(data: any): any; }