import { z } from 'zod';
/**
 * /v2/homestead/decorations/categories definition
 */
export declare const HomesteadDecorationsCategoriesDTO: z.ZodArray<z.ZodObject<{
    /** The category's ID. */
    id: z.ZodNumber;
    /** The category name. */
    name: z.ZodString;
}, z.core.$strict>>;
