import { z } from 'zod';
/**
 * /v2/wvw/ranks definition
 */
export declare const WvWRanksDTO: z.ZodArray<z.ZodObject<{
    /** The id of the rank. */
    id: z.ZodNumber;
    /** The given title for the WvW rank. */
    title: z.ZodString;
    /** The minimum WvW level required to be at this rank. */
    min_rank: z.ZodNumber;
}, z.core.$strict>>;
