import { z } from 'zod';
/**
 * /v2/quaggans definition
 */
export declare const QuaggansDTO: z.ZodArray<z.ZodObject<{
    /** The quaggan identifier. */
    id: z.ZodString;
    /** The URL to the quaggan image. */
    url: z.ZodString;
}, z.core.$strict>>;
