import { z } from 'zod';
/**
 * /v2/account/masteries definition
 */
export declare const AccountMasteriesDTO: z.ZodArray<z.ZodObject<{
    /** The id of the mastery resolvable against /v2/masteries. */
    id: z.ZodNumber;
    /**
     * Indicates the level at which the mastery is on the account.
     * Is a 0-indexed reference to the /v2/masteries.
     */
    level: z.ZodNumber;
}, z.core.$strict>>;
