import { CountryDetailsDefinitionInterface, PriceDefinitionInterface, } from './index'; export interface CatalogShippingInfoResponseInterface { additionalItemCostExcludingVat: PriceDefinitionInterface[]; carrierMethod: string; carrierName: string; country: CountryDetailsDefinitionInterface[]; maxDeliveryTimeWorkingDays: number; manufacturingTime?: string; region: string; shippingTime: string; tierCostExcludingVat: PriceDefinitionInterface[]; tracked: boolean; }