import { Http } from '../helpers/Http'; import { Artist, Track } from '../types/SpotifyObjects'; import { GetArtistAlbumsOptions } from '../types/SpotifyOptions'; import { GetArtistAlbumsResponse } from '../types/SpotifyResponses'; export declare class ArtistsApi { private http; constructor(http: Http); getArtist(artistId: string): Promise; getArtistAlbums(artistId: string, options?: GetArtistAlbumsOptions): Promise; getArtists(artistIds: string[]): Promise; getArtistTopTracks(artistId: string, country: string): Promise; getRelatedArtists(artistId: string): Promise; } //# sourceMappingURL=ArtistsApi.d.ts.map