import type { CategorySuggestion } from '../../ai/ai.service'; export interface ParsedReceiptItem { rawName: string; quantity: number; unit: string; price?: number | null; brand?: string | null; origin?: string | null; matchedProductId?: number; matchedProductName?: string; suggestedProductId?: number; suggestedProductName?: string; categorySuggestion?: CategorySuggestion; }