import BaseEntity from './BaseEntity'; import { IAttachment } from './IAttachment'; import { ICollector, IGenre } from './ICollector'; import { IRating } from './IRating'; import { SeriesMeta, VideoContentInfo, VideoContentOption } from './IVideoContent'; export declare class ITitle extends BaseEntity { id: string; secondary_id: number; info: VideoContentInfo; ratings: IRating; attachments: IAttachment; options: VideoContentOption[]; genres: IGenre[]; categories: ICollector[]; series_meta?: SeriesMeta; is_imdb_top: boolean; is_cinama_top: boolean; year: number; year_end?: number; budget?: string; download_id?: string; constructor(partial: Partial); } export declare class IHeroTitle extends BaseEntity { id: string; secondary_id: number; info: VideoContentInfo; ratings: IRating; attachments: IAttachment; options: VideoContentOption[]; genres: IGenre[]; categories: ICollector[]; series_meta?: SeriesMeta; is_imdb_top: boolean; is_cinama_top: boolean; year: number; year_end?: number; budget?: string; download_id?: string; constructor(partial: Partial); }