import { type HelixUserEmoteData } from '../../interfaces/endpoints/chat.external'; import { HelixEmoteBase } from './HelixEmoteBase'; import type { BaseApiClient } from '../../client/BaseApiClient'; import type { HelixEmoteFromSet } from './HelixEmoteFromSet'; import type { HelixUser } from '../user/HelixUser'; /** * A Twitch user emote. */ export declare class HelixUserEmote extends HelixEmoteBase { constructor(data: HelixUserEmoteData, client: BaseApiClient); /** * The type of the emote. * * There are many types of emotes that Twitch seems to arbitrarily assign. * Check the relevant values in the official documentation. * * @see https://dev.twitch.tv/docs/api/reference/#get-user-emotes */ get type(): string; /** * The ID that identifies the emote set that the emote belongs to, or `null` if the emote is not from any set. */ get emoteSetId(): string | null; /** * The ID of the broadcaster who owns the emote, or `null` if the emote has no owner, e.g. it's a global emote. */ get ownerId(): string | null; /** * Gets all emotes from the emotes set, or `null` if emote is not from any set. */ getAllEmotesFromSet(): Promise; /** * Gets more information about the user that owns the emote, or `null` if the emote is not owned by a user. */ getOwner(): Promise; } //# sourceMappingURL=HelixUserEmote.d.ts.map