import { z } from 'zod';
/**
 * /v2/homestead/decorations definition
 */
export declare const HomesteadDecorationsDTO: z.ZodArray<z.ZodObject<{
    /** The decoration id. */
    id: z.ZodNumber;
    name: z.ZodString;
    /** The homestead decoration description. */
    description: z.ZodString;
    /** The maximum amount of storable instances of this decoration. */
    max_count: z.ZodNumber;
    /** A URL pointing to an icon for the decoration. */
    icon: z.ZodString;
    /** An array of decoration category ids which this decoration belongs to.
     * Can be compared to the v2/homestead/decorations/categories endpoint */
    categories: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;
