import { BaseApi } from '../../BaseApi'; import { ChatEmoteList } from './ChatEmoteList'; /** * The API methods that deal with chat and chatrooms. * * Can be accessed using `client.kraken.chat` on an {@ApiClient} instance. * * ## Example * ```ts * const api = new ApiClient(new StaticAuthProvider(clientId, accessToken)); * const emotes = await api.kraken.chat.getEmotesBySets('1'); * ``` */ export declare class ChatApi extends BaseApi { /** * Retrieves a list of emotes for a given list of enote set IDs. * * @param emotesets The list of emote set IDs, either as array of strings or as a comma separated string. */ getEmotesBySets(emotesets: string[] | string): Promise; }