import type { ArtifactsResponse, BossResponse, CharactersResponse, DomainsResponse, ElementsResponse, NationResponse, ConsumablesFoodResponse, ConsumablesPotionsResponse } from "../interfaces/index.js"; import type { MainCategories, Artifacts, Boss, Characters, Domains, Consumables, Elements, Nations } from "../types/index.js"; export default class Client { #private; getCategories(): Promise; getCategoryInfo(category: MainCategories): Promise; getArtifact(artifact: Artifacts): Promise; getBoss(boss: Boss): Promise; getCharacter(character: Characters): Promise; getConsumable(consumable: Consumables): Promise; getDomain(domain: Domains): Promise; getElement(element: Elements): Promise; getNation(nation: Nations): Promise; } interface Categories { types: string[]; } export {}; //# sourceMappingURL=Client.d.ts.map