import { RawSpotifyAlbum, RawSpotifyArtist, RawSpotifyColorLyrics, RawSpotifyEpisode, RawSpotifyMe, RawSpotifyPlaylist, RawSpotifyPlaylistTrack, RawSpotifyPodcast, RawSpotifyTrack, RawSpotifyUser } from './rawtypes.js'; import { SpotifyAlbum, SpotifyUser, SpotifyArtist, SpotifyTrack, SpotifyPlaylist, SpotifyPlaylistTrack, SpotifyPodcast, SpotifyEpisode, SpotifyColorLyrics, SpotifyMe } from './types.js'; export declare function parseUser(e: RawSpotifyUser): SpotifyUser; export declare function parseMe(e: RawSpotifyMe): SpotifyMe; export declare function parseArtist(e: RawSpotifyArtist): SpotifyArtist; export declare function parseTrack(e: RawSpotifyTrack): SpotifyTrack; export declare function parseTrackColorLyrics(e: RawSpotifyColorLyrics): SpotifyColorLyrics; export declare function parseAlbum(e: RawSpotifyAlbum): SpotifyAlbum; export declare function parsePlaylistTrack(e: RawSpotifyPlaylistTrack): SpotifyPlaylistTrack; export declare function parsePlaylist(e: RawSpotifyPlaylist): SpotifyPlaylist; export declare function parseEpisode(e: RawSpotifyEpisode): SpotifyEpisode; export declare function parsePodcast(e: RawSpotifyPodcast): SpotifyPodcast; export declare function uriToBasics(uri: string): { uri: string; id: string; externalUrl: string; };