import { Image } from './Image';
export interface MovieInfo {
    title: string;
    qualityProfileId: number;
    titleSlug: string;
    images: Image[];
    tmdbId: number;
    year: number;
    path: string;
    monitored?: boolean;
    addOptions?: {
        searchForMovie: boolean;
    };
}
//# sourceMappingURL=MovieInfo.d.ts.map