import { z } from 'zod';
/**
 * /v2/emblem/* Definition
 */
export declare const EmblemDTO: z.ZodArray<z.ZodObject<{
    /** The emblem id. */
    id: z.ZodNumber;
    /** An array of URLs to images that make up the various parts of the emblem. */
    layers: z.ZodArray<z.ZodString>;
}, z.core.$strict>>;
