import { z } from 'zod';
/**
 * /v2/stories/seasons definition
 */
export declare const StoriesSeasonsDTO: z.ZodArray<z.ZodObject<{
    /** The id of the season. */
    id: z.ZodString;
    /** The name of the season. */
    name: z.ZodString;
    /** The order in which this season is displayed in the Story Journal. */
    order: z.ZodNumber;
    /** An array of story ids for the stories that belong to this season. */
    stories: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;
