import type { ShippingCostType } from './index.js'; export type CheckoutOrderShippingOption = { /** @deprecated Currently not used */ currency?: string; discount: number; merchants: number[]; price: number; formattedPrice?: string; shippingCostType: ShippingCostType; shippingService: { description: string; id: number; name: string; type: string; minEstimatedDeliveryHour: number; maxEstimatedDeliveryHour: number; trackingCodes: string[]; }; shippingWithoutCapped: number; baseFlatRate: number; };