import { Client } from "./Client"; import { User as CacheUser } from "./core/CacheManager"; import { InteractionReplyData } from "./interactions/BaseInteraction"; export declare class User { data: CacheUser; constructor(data: CacheUser); get id(): string; get username(): string; get discriminator(): string; get avatar(): string; get tag(): string; get public_flags(): number; get display_name(): string; get avatar_decoration(): string; displayAvatarURL(): string; static send(userId: string, message: InteractionReplyData, client: Client): Promise; }