import { z } from 'zod';
/**
 * /v2/home/cats definition
 */
export declare const HomeCatsDTO: z.ZodArray<z.ZodObject<{
    /** Id of the cat. */
    id: z.ZodNumber;
    hint: z.ZodOptional<z.ZodString>;
}, z.core.$strict>>;
