import { z } from 'zod';
/**
 * /v2/account/legendaryarmory definition
 */
export declare const AccountLegendaryArmoryDTO: z.ZodArray<z.ZodObject<{
    /** The id of the armory items. Can be resolved against /v2/items and /v2/legendaryarmory. */
    id: z.ZodNumber;
    /** The count of that item available for use in a single equipment template. */
    count: z.ZodNumber;
}, z.core.$strict>>;
