export declare class Song { type: SongType; title: string; url: string; image: string; length: number; constructor(type: SongType, title: string, url: string, image: string, length: number); } export declare enum SongType { YouTube = 0, Spotify = 1 }