export interface Home {
    greetingText?: string;
    items?: HomeItems[];
}
export interface HomeItems {
    title?: string;
    items: HomeItem[];
}
export interface HomeItem {
    playlists?: Playlist[];
    albums?: Albums[];
    artists?: Artists[];
}
interface Artists {
    name?: string;
    id?: string;
    verified?: boolean;
    type?: string;
    image?: string;
}
interface Albums {
    title?: string;
    id?: string;
    artwork?: string;
    artists?: AlbumArtists[];
    type?: string;
}
interface AlbumArtists {
    name?: string;
    id?: string;
}
interface Playlist {
    id?: string;
    title?: string;
    format?: string;
    description?: string;
    image?: string;
    owner?: PlaylistOwner;
}
interface PlaylistOwner {
    name?: string;
    id?: string;
}
export {};
//# sourceMappingURL=Home.d.ts.map