import { CatalogCategoryInterface, CatalogImageResponseInterface, PriceDefinitionInterface, } from './index'; export interface CatalogProductDefinitionInterface { categories: CatalogCategoryInterface[]; category: CatalogCategoryInterface; fromCostExcludingVat: PriceDefinitionInterface[]; name: string; productImagery: CatalogImageResponseInterface; shortDescription: string; slug: string; }