declare class CreateRecipeIngredientDto { productId?: number; rawName: string; rawLine?: string; quantity?: number; unit?: string; note?: string; matchConfidence?: number; matchSource?: string; alternativeProductIds?: number[]; } export declare class CreateRecipeDto { name: string; description?: string; instructions?: string; imageUrl?: string; servings?: number; isPublic?: boolean; ingredients: CreateRecipeIngredientDto[]; } export {};