/** @private */ export interface Emote { code: string; id: number; } /** @private */ export declare type EmoteSetListData = Record; /** * A list of emotes, grouped into emote sets, that a user can use. */ export declare class EmoteSetList { private readonly _data; /** @private */ constructor(data: EmoteSetListData); /** * Finds the emote ID for the given emote code. * * @param emoteCode The emote code to check for. */ findEmoteId(emoteCode: string): number | undefined; private static _testEmoteCode; }