import { z } from 'zod';
/**
 * /v2/legendaryarmory definition
 */
export declare const LegendaryArmoryDTO: z.ZodArray<z.ZodObject<{
    /** The item id of the legendary armory item. */
    id: z.ZodNumber;
    /** The maximum quantity of the legendary armory item that can be stored on the account. */
    max_count: z.ZodNumber;
}, z.core.$strict>>;
