import { ApiConfig, ApiNamespace } from '../client'; import { Genre } from '../trakt'; import { ApiResponse } from '../utils'; /** * Genres api namespace */ export declare class Genres implements ApiNamespace { config: ApiConfig; constructor(config: ApiConfig); /** * Get a list of all movie genres, including names and slugs. * @returns */ listMovies(): Promise>; /** * Get a list of all show genres, including names and slugs. * @returns */ listShows(): Promise>; private listGenres; } //# sourceMappingURL=index.d.ts.map