import * as Types from './types'; export declare const Trending: (apiKey: string) => { /** * Get the trending people on TMDB. * @param {string} time_window * @returns Promise */ People: (time_window?: Types.TimeWindow, options?: Types.PageOptions) => Promise; /** * Get the trending TV shows on TMDB. * @param {string} time_window * @returns Promise */ TV: (time_window?: Types.TimeWindow, options?: Types.PageOptions) => Promise; }; export default Trending;