import { z } from 'zod';
/**
 * /v2/raids definition
 */
export declare const RaidsDTO: z.ZodArray<z.ZodObject<{
    /** The name of the dungeon. */
    id: z.ZodString;
    /** An array of object containing the following: */
    wings: z.ZodArray<z.ZodObject<{
        /** The given name for the dungeon path. */
        id: z.ZodString;
        /** List of events within the raid or dungeon. */
        events: z.ZodArray<z.ZodObject<{
            /** The event/encounter name. */
            id: z.ZodString;
            /** The type of events. */
            type: z.ZodEnum<{
                Checkpoint: "Checkpoint";
                Boss: "Boss";
            }>;
        }, z.core.$strict>>;
    }, z.core.$strict>>;
}, z.core.$strict>>;
