export interface ProductCarouselItem {
    title?: string;
    media?: {
        container: any;
        format?: string;
    };
    price?: any;
    route?: any[];
}
