import * as YTS from './types/types'; /** * TODO: Implement proxy? */ export declare const config: YTS.ConfigType; /** * Used to list and search through out all the available movies. Can sort, filter, search and order the results * * @param params * @param format * @returns */ export declare function search(params?: YTS.ListMoviesParams, format?: YTS.ConfigType['format']): Promise; /** * Returns the information about a specific movie * * @param params * @param format * @returns */ export declare function details(params: YTS.MovieDetailsParams, format?: YTS.ConfigType['format']): Promise; /** * Returns 4 related movies as suggestions for the user * * @param params * @param format * @returns */ export declare function suggestions(params: YTS.MovieSuggestions, format?: YTS.ConfigType['format']): Promise; /** * Returns all the comments for the specified movie * * ! NOTE: The API route is broken, this function is non functional for the time being * ! Mabye in the future this will be working again. This is a YTS problem and not a package problem * ! As soon as these routings are working as intended I will remove the @deprecated marker * @deprecated This method is not working, API route is not working on YTS side * @param params * @param format */ export declare function comments(params: YTS.MovieComments, format?: YTS.ConfigType['format']): Promise; /** * Returns all the IMDb movie reviews for the specified movie * * ! NOTE: The API route is broken, this function is non functional for the time being * ! Mabye in the future this will be working again. This is a YTS problem and not a package problem * ! As soon as these routings are working as intended I will remove the @deprecated marker * @deprecated This method is not working, API route is not working on YTS side * @param params * @param format */ export declare function reviews(params: YTS.MovieReviews, format?: YTS.ConfigType['format']): Promise; /** * Returns all the parental guide ratings for the specified movie * * ! Apparently this is not yet implemented inside the YTS API * * @param params * @param format * @returns */ export declare function parentals(params: YTS.MovieParentalGuides, format?: YTS.ConfigType['format']): Promise; /** * Returns the 4 latest upcoming movies * * ! NOTE: The API route is broken, this function is non functional for the time being * ! Mabye in the future this will be working again. This is a YTS problem and not a package problem * ! As soon as these routings are working as intended I will remove the @deprecated marker * @deprecated This method is not working, API route is not working on YTS side * @param format * @returns */ export declare function upcomming(format?: YTS.ConfigType['format']): Promise;