import { Http } from '../helpers/Http'; import { Category, GetRecommendationsSeeds, Paging, SimplifiedAlbum, SimplifiedPlaylist } from '../types/SpotifyObjects'; import { GetCategoriesOptions, GetCategoryOptions, GetCategoryPlaylistsOptions, GetFeaturedPlaylistsOptions, GetNewReleasesOptions, GetRecommendationsOptions } from '../types/SpotifyOptions'; import { GetFeaturedPlaylistsResponse, GetRecommendationsResponse } from '../types/SpotifyResponses'; export declare class BrowseApi { private http; constructor(http: Http); getAvailableGenreSeeds(): Promise; getCategories(options?: GetCategoriesOptions): Promise>; getCategory(categoryId: string, options?: GetCategoryOptions): Promise; getCategoryPlaylists(categoryId: string, options?: GetCategoryPlaylistsOptions): Promise>; getFeaturedPlaylists(options?: GetFeaturedPlaylistsOptions): Promise; getNewReleases(options?: GetNewReleasesOptions): Promise>; getRecommendations(seeds: GetRecommendationsSeeds, options?: GetRecommendationsOptions): Promise; } //# sourceMappingURL=BrowseApi.d.ts.map