export interface ShippingOption { id: string; label: string; eta: string; price: string | number; currency?: string; } interface ShippingEstimateProps { options: ShippingOption[]; selected?: string; class?: string; onchange?: (id: string) => void; } declare const ShippingEstimate: import("svelte").Component; type ShippingEstimate = ReturnType; export default ShippingEstimate;