import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { EmotesDTO } from '../../models';
import { stringArrayType } from '../v2apiUtils';
/**
 * /v2/emotes Api
 */
export declare class EmotesApi extends ApiBase {
    /**
     * Returns information about unlockable emotes.
     */
    get(): Promise<z.infer<typeof stringArrayType>>;
    /**
     * Returns information about unlockable emotes.
     *
     * @param ids - Emote names, or "all"
     */
    get(ids: string[] | 'all'): Promise<z.infer<typeof EmotesDTO>>;
}
