import type { PaginationParams, RecentRecommendation } from '../models'; import { BaseClient } from './base.client'; /** * **Recommendations Client** * * Client used to access the Recommendations Endpoints: * * See also: [Jikan Documentation](https://docs.api.jikan.moe/) */ export declare class RecommendationsClient extends BaseClient { /** * Get recent anime recommendations * @param params Pagination parameters */ getRecentAnimeRecommendations(params?: Partial): Promise>; /** * Get recent manga recommendations * @param params Pagination parameters */ getRecentMangaRecommendations(params?: Partial): Promise>; }