import { Client } from "../Client"; import { Artist } from "./Artist"; export declare class ArtistsClient { readonly client: Client; /** * @example const ArtistsClient = await Genius.Artist.Client(key); */ constructor(client: Client); /** * Fetches the Artist using the provided ID (Requires Key) * @example const Artist = await ArtistsClient.get(456537); */ get(id: number): Promise; }