export type TidalSong = { title: string; artists: string; album: string; playingFrom: string; status: "playing" | "paused"; url: string; current: string; duration: string; }; export type TidalVolume = { volume: number; }; //# sourceMappingURL=tidal.d.ts.map