import { z } from 'zod';
/**
 * /v2/wizardsvault definition
 */
export declare const WizardsVaultDTO: z.ZodObject<{
    /** The name of the current season. */
    title: z.ZodString;
    /** The date that the current season begins. */
    start: z.ZodString;
    /** The date that the current season ends. */
    end: z.ZodString;
    /** The wizard's vault listing ids available (use the sub endpoint to view item details). */
    listings: z.ZodArray<z.ZodNumber>;
    /** The wizard's vault objective ids available (use the sub endpoint to view item details). */
    objectives: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>;
