import BaseEntity from './BaseEntity'; import { IAttachment } from './IAttachment'; import { IGenre } from './ICollector'; import { IRating } from './IRating'; import { VideoContentInfo, VideoContentOption } from './IVideoContent'; type SeriesMeta = { air_status: string; air_days: string[]; last_episode_date?: string; last_episode: string; next_episode_date?: string; }; export declare class IBoxOffice extends BaseEntity { id: string; content_id: string; info: VideoContentInfo; ratings: IRating; attachments: Omit; options: VideoContentOption[]; genres: IGenre[]; series_meta?: SeriesMeta; is_imdb_top: boolean; is_cinama_top: boolean; year: number; year_end?: number; budget?: string; download_id?: string; total: string; weeks: number; weekend: string; rank: number; constructor(partial: Partial); } export {};