import type { ChatEmoteData } from './ChatEmote'; import { ChatEmote } from './ChatEmote'; /** * A list of emotes. */ export declare class ChatEmoteList { private readonly _data; /** @private */ constructor(data: ChatEmoteData[]); /** * A list of all emotes in the list. */ get emotes(): ChatEmote[]; /** * Gets all emotes from the list that are from a given emote set. * * @param setId */ getAllFromSet(setId: number): ChatEmote[]; /** * Finds a single emote by its ID. * * @param id */ getById(id: number): ChatEmote | null; }