import { z } from 'zod';
/**
 * /v2/emotes definition
 */
export declare const EmotesDTO: z.ZodArray<z.ZodObject<{
    /** Id of the emote. */
    id: z.ZodString;
    /** List of all available commands for the emote. */
    commands: z.ZodArray<z.ZodString>;
    /** List of ids of the items. Can be resolved against /v2/items. */
    unlock_items: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;
