import { z } from 'zod';
/**
 * /v2/account/wizardsvault/listings definition
 */
export declare const AccountWizardsVaultListingsDTO: z.ZodArray<z.ZodObject<{
    /** The listing id. */
    id: z.ZodNumber;
    /** The id of the item */
    item_id: z.ZodNumber;
    /** The quantity of the item the user receives */
    item_count: z.ZodNumber;
    /** Appears to be the position in the wizards vault UI. */
    type: z.ZodEnum<{
        Featured: "Featured";
        Normal: "Normal";
        Legacy: "Legacy";
    }>;
    /** The quantity of Astral Acclaim to purchase . */
    cost: z.ZodNumber;
    /** Amount of the item already purchased. Not included if the reward is unlimited. */
    purchased: z.ZodOptional<z.ZodNumber>;
    /** Maximum amount that can be purchased. Not included if the reward is unlimited. */
    purchase_limit: z.ZodOptional<z.ZodNumber>;
}, z.core.$strict>>;
