import { thumbnails } from '../types'; import { parsePlaylistItemsReturn } from './playlists.types'; export declare type parseAlbumsReturn = { browseId: string; title: string; thumbnails: string; year?: string | undefined; type?: string | undefined; artists?: undefined | { name: string; id: string; }[]; }[]; export declare type parseArtistsReturn = { browseId: string; artist: string; songs: string; subscribers: string; thumbnails: thumbnails; }[]; export declare type parseLibarySongsReturn = { results: any; parsed: parsePlaylistItemsReturn; }; export declare type parseLibraryArtistsReturn = parseArtistsReturn;