import { CatalogDataProductRenderFormattedPriceInfoInterface } from './catalogDataProductRenderFormattedPriceInfoInterface'; import { CatalogDataProductRenderPriceInfoExtensionInterface } from './catalogDataProductRenderPriceInfoExtensionInterface'; export interface CatalogDataProductRenderPriceInfoInterface { finalPrice: number; maxPrice: number; maxRegularPrice: number; minimalRegularPrice: number; specialPrice: number; minimalPrice: number; regularPrice: number; formattedPrices: CatalogDataProductRenderFormattedPriceInfoInterface; extensionAttributes?: CatalogDataProductRenderPriceInfoExtensionInterface; }