import { type ProductAttribute } from "../products/product-attribute"; export interface ProductDetails { title?: string; price?: number; // listPrice?: number; description?: string; featureBullets?: string[]; reviewRating?: number; reviewCount?: number; imageUrls?: string[]; attributes?: ProductAttribute[]; };