import * as Types from './types'; declare const WatchProviders: (apiKey: string) => { /** * Returns a list of all of the countries we have watch provider (OTT/streaming) data for. * @param {object} options * @returns Promise */ GetAvailableRegions: (options: Types.Options) => Promise; /** * Returns a list of the watch provider (OTT/streaming) data we have available for movies. You can specify a watch_region param if you want to further filter the list by country. * @param {object} options * @returns Promise */ GetMovieProviders: (options?: Types.WatchProvidersOptions) => Promise; /** * Returns a list of the watch provider (OTT/streaming) data we have available for TV series. You can specify a watch_region param if you want to further filter the list by country. * @param {object} options * @returns Promise */ GetTVProviders: (options?: Types.WatchProvidersOptions) => Promise; }; export default WatchProviders;