import { z } from 'zod';
/**
 * /v2/minis definition.
 */
export declare const MinisDTO: z.ZodArray<z.ZodObject<{
    /** The mini id. */
    id: z.ZodNumber;
    /** The mini name. */
    name: z.ZodString;
    /** A description of how to unlock the mini (only present on a few entries). */
    unlock: z.ZodOptional<z.ZodString>;
    /** The mini icon. */
    icon: z.ZodString;
    /** The sort order that is used for displaying the mini in-game. */
    order: z.ZodNumber;
    /** The item which unlocks the mini. Can be resolved against /v2/items. */
    item_id: z.ZodNumber;
}, z.core.$strict>>;
