import { Client } from "../Client"; export declare class Artist { readonly client: Client; partial: boolean; name: string; id: number; url: string; thumbnail: string; image: string; iq: number; verified: { normal: boolean; meme: boolean; }; socialmedia: { facebook?: string; twitter?: string; }; raw: any; constructor(client: Client, res: any, partial?: boolean); /** * Fetches the songs of the Artist (Requires Key) * @example const Songs = await Artist.songs(); */ songs(options?: { sort?: string; page?: number; per_page?: number; }): Promise; /** * Fetches All Information about the Artist and updates all the existing Properties (Requires Key) * @example const NewArtist = await Artist.fetch(); */ fetch(): Promise; }