import { BaseEndpoint } from './base'; import { BelongingMovies, Keyword, KeywordsOptions } from '../types'; export declare class KeywordsEndpoint extends BaseEndpoint { private readonly baseURL; constructor(accessToken: string, baseURL: string); details(keywordId: number): Promise; /** * * @deprecated */ belongingMovies(keywordId: number, options?: KeywordsOptions): Promise; }