import * as Types from '../types'; export declare const TVSeason: (apiKey: string, tv_id: number) => { /** * Get the TV season details by id. * @param {number} season * @param {object} options * @returns Promise */ GetDetails: (season: number, options?: Types.AppendOptions) => Promise; /** * Get the aggregate credits for TV season. * This call differs from the main credits call in that it does not only return the season credits, but rather is a view of all the cast & crew for all of the episodes belonging to a season. * @param {number} season * @param {options} options * @returns Promise */ GetAggregateCredits: (season: number, options?: Types.Options) => Promise; /** * Get the credits for TV season. * @param {number} season * @param {options} options * @returns Promise */ GetCredits: (season: number, options?: Types.Options) => Promise; /** * Get the external ids for a TV season. We currently support the following external sources. * @param {number} season * @param {options} options * @returns Promise */ GetExternalIds: (season: number, options?: Types.Options) => Promise; /** * Get the images that belong to a TV season. * @param {number} season * @param {options} options * @returns Promise */ GetImages: (season: number, options?: Types.Options) => Promise; /** * * @param {number} season * @param {options} options * @returns Promise */ GetTranslations: (season: number, options?: Types.Options) => Promise; /** * Get the videos that have been added to a TV season. * @param {number} season * @param {options} options * @returns Promise */ GetVideos: (season: number, options?: Types.Options) => Promise; }; export default TVSeason;