import { APIEmoji } from "../api"; import { Client } from "../Client"; import { BaseObject } from "./BaseObject"; export declare class Emoji extends BaseObject { constructor(client: Client, data: APIEmoji); get name(): string; get animated(): boolean; get nsfw(): boolean; get creatorID(): string; get creator(): import("./User").User; fetchCreator(fetchNew?: boolean): Promise; /** The image URL for this emoji. */ get imageURL(): string; get parentID(): string; get parent(): import("./Server").Server; get uniqueName(): string; /** Delete this emoji. */ delete(): Promise; }