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