import { z } from 'zod';
/**
 * /v2/skiffs definition
 */
export declare const SkiffsDTO: z.ZodArray<z.ZodObject<{
    /** The id of the skiff skin. */
    id: z.ZodNumber;
    /** The name of the skiff skin. */
    name: z.ZodString;
    /** The full icon URL. */
    icon: z.ZodURL;
    /** An object containing information on the available dye slots and defaults. */
    dye_slots: z.ZodArray<z.ZodObject<{
        /** The id of the default color. Can be resolved against v2/colors. */
        color_id: z.ZodNumber;
        /** The type of material. */
        material: z.ZodEnum<{
            cloth: "cloth";
            leather: "leather";
            metal: "metal";
        }>;
    }, z.core.$strict>>;
}, z.core.$strict>>;
