import { Config } from "./Constants"; import { Requester } from "./Requester"; import { ArtistsClient } from "./Artists/Client"; import { SongsClient } from "./Songs/Client"; export declare class Client { readonly key?: string | undefined; readonly config: Config; songs: SongsClient; artists: ArtistsClient; api: Requester; constructor(key?: string | undefined, config?: Config); }