import { TraktApiContent } from '../traktTypes'; export declare type UpdatedIDs = number[]; export declare type UpdatedStartDate = string; export interface UpdatesBase { updated_at: string; } export interface UpdatesMovie extends UpdatesBase { movie: TraktApiContent; } export interface UpdatesShow extends UpdatesBase { show: TraktApiContent; } //# sourceMappingURL=updates.d.ts.map