import { TwitchCommandClient } from '../client/TwitchCommandClient';
interface Emotes {
    code: string;
    emoticon_set: number;
    id: number;
    channel_id: string | null;
    channel_name: string | null;
}
export declare class EmotesManager {
    private client;
    private emotes;
    constructor(client: TwitchCommandClient);
    getGlobalEmotes(): Promise<void>;
    getRandomEmote(): Emotes;
}
export {};
