import { CustomerAddressGraphql } from '@evershop/evershop/types/customerAddress'; import React from 'react'; interface ShippingMethod { code: string; name: string; cost?: { value: number; text: string; }; description?: string; isSelected?: boolean; } export declare function ShippingMethods({ methods, shippingAddress, isLoading, onSelect }: { methods: ShippingMethod[]; shippingAddress?: CustomerAddressGraphql; isLoading?: boolean; onSelect?: (method: ShippingMethod) => Promise | boolean; }): React.JSX.Element; export {};