import { MovieMedia, SerieMedia } from "../types/input/Media.ts"; import { RawScrapeRequester } from "../types/input/Requester.ts"; export declare namespace TMDB { /** Initialize the TMDB API keys and optional cache TTL. */ function init(keys: string[], options?: { cacheTTL?: number; }): void; /** Create a requester media object based on the provided ScrapeRequester. * It will override not override `user-provided` media properties except for `localizedTitles`, * which will be generated based on the requester's `target language ISO code` and the media's translations from TMDB. */ function createRequesterMedia(requester: RawScrapeRequester): Promise; }