export type MOVIE = { account_states: { favorite: boolean; rated: { value: number }; watchlist: boolean }; backdrop_path: string; id: number; title: string; poster_path: string; budget: number; genres: [{ id: number; name: string }]; original_title: string; overview: string; vote_average: number; runtime: number | null; release_date: string; status: string; revenue: number; "watch/providers": { results: { US: { link: string; rent: { display_priority: number; logo_path: string; provider_name: string; provider_id: number }; buy: { display_priority: number; logo_path: string; provider_name: string; provider_id: number }; flatrate: { display_priority: number; logo_path: string; provider_name: string; provider_id: number }; flatrate_and_buy: { display_priority: number; logo_path: string; provider_name: string; provider_id: number }; }; }; }; spoken_languages: [{ iso_639_1: string; name: string; english_name: string }]; production_countries: [{ iso_3166_1: string; name: string }]; production_companies: [{ name: string; id: number; logo_path: string | null; origin_country: string }]; credits: { cast: CAST }; videos: { results: { iso_3166_1: string; iso_639_1: string; name: string; key: string; site: string; size: number; type: string; official: boolean; published_at: string; id: string; }; }; recommendations: { results: { poster_path: string | null; adult: boolean; overview: string; release_date: string; genre_ids: number[]; id: number; original_title: string; original_language: string; title: string; backdrop_path: string | null; popularity: number; vote_count: number; video: boolean; vote_average: number; }; }; };