import type { Anime, Character, Manga, Person } from '../models'; import { BaseClient } from './base.client'; /** * **Random Client** * * Client used to access the Random Endpoints: * * See also: [Jikan Documentation](https://docs.api.jikan.moe/) */ export declare class RandomClient extends BaseClient { /** * Get random anime */ getRandomAnime(): Promise>; /** * Get random manga */ getRandomManga(): Promise>; /** * Get a random character */ getRandomCharacters(): Promise>; /** * Get random person */ getRandomPerson(): Promise>; }