import type { PaymentCurrencyAmount } from './payment-currency-amount.js';
export interface PaymentShippingOption {
    amount: PaymentCurrencyAmount;
    detail?: string;
    id: string;
    label: string;
    selected?: boolean;
}
//# sourceMappingURL=payment-shipping-option.d.ts.map