import { z } from 'zod';
/**
 * /v2/dungeons definition
 */
export declare const DungeonsDTO: z.ZodArray<z.ZodObject<{
    /** The name of the dungeon.*/
    id: z.ZodString;
    /** The paths in the dungeon. */
    paths: z.ZodArray<z.ZodObject<{
        /** The given name for the dungeon path. */
        id: z.ZodString;
        /** The type of the chosen path. */
        type: z.ZodEnum<{
            Story: "Story";
            Explorable: "Explorable";
        }>;
    }, z.core.$strict>>;
}, z.core.$strict>>;
