import { z } from 'zod';
/**
 * /v2/legends definition.
 */
export declare const LegendsDTO: z.ZodArray<z.ZodObject<{
    /** Id of the legend. */
    id: z.ZodString;
    /** The legend code for a build template link. */
    code: z.ZodOptional<z.ZodNumber>;
    /** The id of the profession (swap Legend) skill. Can be resolved against /v2/skills. */
    swap: z.ZodNumber;
    /** The id of the heal skill. Can be resolved against /v2/skills. */
    heal: z.ZodNumber;
    /** The id of the elite skill. Can be resolved against /v2/skills. */
    elite: z.ZodNumber;
    /** The ids of the utility skills. Can be resolved against /v2/skills. */
    utilities: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;
