import { z } from 'zod';
/**
 * /v2/wvw/upgrades definition.
 */
export declare const WvWUpgradesDTO: z.ZodArray<z.ZodObject<{
    /** The upgrade id. */
    id: z.ZodNumber;
    /** The upgrade tiers. */
    tiers: z.ZodArray<z.ZodObject<{
        /** The name of the upgrade tier. */
        name: z.ZodString;
        /** The number of required yaks. */
        yaks_required: z.ZodNumber;
        /** The upgrades in each tier. */
        upgrades: z.ZodArray<z.ZodObject<{
            /** The name of the upgrade tier. */
            name: z.ZodString;
            /** The given description for this upgrade. */
            description: z.ZodString;
            /** The url/image link for the upgrade's icon. */
            icon: z.ZodString;
        }, z.core.$strict>>;
    }, z.core.$strict>>;
}, z.core.$strict>>;
