declare class Client {
    static version?: "V.1";
    getMovie(id: string): Promise<import("../index.js").IMovie>;
    getMovieViaName(query: string): Promise<import("../index.js").ISearch[]>;
    getPictures(id: string): Promise<import("../index.js").IPictures[]>;
    getTrailer(id: string): Promise<any>;
    getShow(id: string): Promise<import("../index.js").IShow>;
    getShowViaName(query: string): Promise<import("../index.js").ISearch[]>;
    getCast(id: string): Promise<import("../index.js").ICast[]>;
    getSimilar(id: string): Promise<import("../index.js").ISimilar[]>;
}
export { Client };
