import { FC } from 'react'; import { Address } from './types'; interface DeliveryOption { id: string; price: number; estimate: string; isSelected: boolean; } interface ContainerProps { canEditData: boolean; countries: string[]; deliveryOptions: DeliveryOption[]; insertAddress: (address: any) => Promise; loading: boolean; numberOfItems?: number; numberOfUnavailableItems?: number; selectDeliveryOption: (option: string) => void; selectedAddress: Address; title: string; } export declare const ShippingCalculatorContainer: FC; export {};