import { Http } from '../helpers/Http'; import { Artist, CursorBasedPaging } from '../types/SpotifyObjects'; import { FollowPlaylistOptions, GetFollowedArtistsOptions } from '../types/SpotifyOptions'; export declare class FollowApi { private http; constructor(http: Http); areFollowingPlaylist(playlistId: string, userIds: string[]): Promise; followArtist(artistId: string): Promise; followArtists(artistIds: string[]): Promise; followPlaylist(playlistId: string, options?: FollowPlaylistOptions): Promise; followUser(userId: string): Promise; followUsers(userIds: string[]): Promise; getFollowedArtists(options?: GetFollowedArtistsOptions): Promise>; isFollowingArtist(artistId: string): Promise; isFollowingArtists(artistIds: string[]): Promise; isFollowingPlaylist(playlistId: string, userId: string): Promise; isFollowingUser(userId: string): Promise; isFollowingUsers(userIds: string[]): Promise; unfollowArtist(artistId: string): Promise; unfollowArtists(artistIds: string[]): Promise; unfollowPlaylist(playlistId: string): Promise; unfollowUser(userId: string): Promise; unfollowUsers(userIds: string[]): Promise; } //# sourceMappingURL=FollowApi.d.ts.map