import { FC } from 'react'; import { CheckoutAddress, Address, DeliveryOption } from './types'; interface CustomProps { canEditData: boolean; insertAddress: (address: CheckoutAddress) => Promise; selectedAddress: Address; deliveryOptions: DeliveryOption[]; countries: string[]; selectDeliveryOption: (option: string) => void; numberOfItems: number; numberOfUnavailableItems: number; } export declare const EstimateShipping: FC; export {};