import { FC } from 'react'; import { AddressWithValidation, DeliveryOption } from './types'; interface CustomProps { address: AddressWithValidation; canEditData: boolean; options: DeliveryOption[]; setShowResult: (showResult: boolean) => void; selectDeliveryOption: (option: string) => void; numberOfItems: number; numberOfUnavailableItems: number; } export declare const ShippingResult: FC; export {};