export type PlexMusicSearchTrack = {
    id: string;
    artists: string[];
    title: string;
    album?: string;
};
