import { Client } from "../Client"; import { Album } from "../Albums/Album"; import { Artist } from "../Artists/Artist"; export declare class Song { readonly client: Client; partial: boolean; title: string; fullTitle: string; featuredTitle: string; id: number; thumbnail: string; image: string; url: string; endpoint: string; artist: Artist; album?: Album; releasedAt?: Date; raw: any; constructor(client: Client, res: any, partial?: boolean); /** * Fetches Lyrics of the Track * @example const Lyrics = await Song.lyrics(true); */ lyrics(removeChorus?: boolean): Promise; /** * Fetches All Information about the Track and updates all the existing Properties (Requires Key) * @example const NewSong = await Song.fetch(); */ fetch(): Promise; removeChorus(lyrics: string): string; }