import { z } from 'zod';
/**
 * /v2/wizardsvault/objectives definition
 */
export declare const WizardsVaultObjectivesDTO: z.ZodArray<z.ZodObject<{
    /** The ID of the objective. */
    id: z.ZodNumber;
    /** The title of the objective. */
    title: z.ZodString;
    /** The reward track containing the objective. */
    track: z.ZodEnum<{
        PvP: "PvP";
        WvW: "WvW";
        PvE: "PvE";
    }>;
    /** The amount of astral acclaim awarded. */
    acclaim: z.ZodNumber;
}, z.core.$strict>>;
