interface Product { id: string | number name: string description: string slug: string path?: string images: ProductImage[] variants: ProductVariant[] prices: ProductPrice[] } interface ProductImage { url: string alt?: string } interface ProductVariant { id: string | number } interface ProductPrice { value: number | string currencyCode: 'USD' | 'ARS' type?: 'price' | 'retail' | 'sale' | string } interface Cart { id: string products: Pick[] } interface Wishlist { id: string products: Pick[] } interface Order {} interface Customer { id: string name: string email: string } interface Category { id: string name: string } interface Brand { id: string name: string } type Features = 'wishlist' | 'customer'