import { BaseModel } from './util'; import { Organization } from './organization'; export declare enum OrganizationBillStatuses { pending = 1, paid = 2, canceled = 3 } export declare const OrganizationBillStatusLocalization: { "ru-RU": { 1: string; 2: string; 3: string; }; "en-US": { 1: string; 2: string; 3: string; }; }; export declare class OrganizationBill extends BaseModel { id: number; organization: Organization; status: OrganizationBillStatuses; sum: number; paymentDate: Date; payTillDate: Date; dateFrom: Date; dateTo: Date; createdAt: Date; static toFront(data: any): any; static toBack(data: any): any; }