import { Http } from '../helpers/Http'; import { Album } from '../types/SpotifyObjects'; import { GetAlbumTracksOptions, MarketOptions } from '../types/SpotifyOptions'; import { GetAlbumTracksResponse } from '../types/SpotifyResponses'; export declare class AlbumsApi { private http; constructor(http: Http); getAlbum(albumId: string, options?: MarketOptions): Promise; getAlbums(albumIds: string[], options?: MarketOptions): Promise>; getAlbumTracks(albumId: string, options?: GetAlbumTracksOptions): Promise; } //# sourceMappingURL=AlbumsApi.d.ts.map