import { Client, ClientOptions } from 'discord.js'; export declare class AdvancedClient extends Client { /** * @param token - The token for the client. * @param options - The client options. * @see {@link https://discord.js.org/#/docs/main/stable/typedef/ClientOptions} */ constructor(token: string, options: ClientOptions); /** * Get the ID of the ClientUser. * * @returns - Returns the ID the ClientUser. */ get id(): string | undefined; /** * Get the mention of the ClientUser. */ get mention(): `<@${string | undefined}>`; /** * Returns the ping of the websocket. */ get ping(): number; /** * Returns the tag of the ClientUser. */ get tag(): string | undefined; /** * Returns the username of the ClientUser. */ get username(): string | undefined; }