import { z } from 'zod';
/**
 * /v2/jadebots definition
 */
export declare const JadebotsDTO: z.ZodArray<z.ZodObject<{
    /** The id of the jade bot skin. */
    id: z.ZodNumber;
    /** The name of the jade bot skin. */
    name: z.ZodString;
    /** A description of how to unlock the skin. */
    description: z.ZodString;
    /** The item which unlocks the skin. Can be resolved against /v2/items. */
    unlock_item: z.ZodNumber;
}, z.core.$strict>>;
