export default class SpotifyService { spotifyApi: any; constructor(credentials: any); authorizeUserFlow(): Promise<{}>; codeGrant(code: string): Promise; createPlaylistWithSongs(playlistName: string, songs: string[]): Promise; }