import { parsePlaylistItemsReturn } from '../parsers/playlists.types'; import { thumbnails } from './browsing.types'; export declare type Order = 'a_to_z' | 'z_to_a' | 'recently_added'; export declare type Rating = 'LIKE' | 'DISLIKE' | 'INDIFFERENT'; export declare type getLibraryAlbumsReturn = { browseId: string; title: string; type: string; thumbnails: thumbnails; artists: { name: string; id: string; }[]; year: string; }[]; export declare type getLibraryArtistsReturn = { browseId: string; artist: string; subscribers: string; thumbnails: thumbnails; }[]; export declare type getHistoryReturn = (parsePlaylistItemsReturn[number] & { played: boolean; })[];