export interface StyleProfile { styleFocus: string; priceRange: { min: number; max: number; }; recentInterest: string; } export interface ShoppingJourneyItem { category: string; timeAgo: string; } export interface PersonalizedOffer { discount: number; recentlyViewed: string[]; } export interface StyleAssistantState { isAnalyzing: any; styleProfile: any; shoppingJourney: any; personalizedOffer: any; }