import { z } from 'zod';
/**
 * /v2/characters/:id/recipes definition
 */
export declare const CharacterRecipesDTO: z.ZodObject<{
    /** Array of recipe ids. Can be resolved against /v2/recipes. */
    recipes: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>;
