import { z } from 'zod';
/**
 * /v2/races definition
 */
export declare const RacesDTO: z.ZodArray<z.ZodObject<{
    /** The id of the race. */
    id: z.ZodString;
    /** Name of the race */
    name: z.ZodString;
    /** An array of skill ids. Can be resolved against v2/skills. */
    skills: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;
