import type { Artist, Artists, Market, MaxInt, Page, SimplifiedAlbum, TopTracksResult } from "../types.js"; import EndpointsBase from "./EndpointsBase.js"; export default class ArtistsEndpoints extends EndpointsBase { get(id: string): Promise; get(ids: string[]): Promise; albums(id: string, includeGroups?: string, market?: Market, limit?: MaxInt<50>, offset?: number): Promise>; topTracks(id: string, market: Market): Promise; relatedArtists(id: string): Promise; }