import { Movie } from './types/tmdb-movie';
import { TvShow } from './types/tmdb-tv-show';
export declare const generateImageUrl: (image: string) => string;
export declare const getTmdbMetadata: (type: "movie" | "tv", id: number, apiKey: string, language?: string, cache?: any, tries?: number) => Promise<Movie | TvShow>;
