import type { PaymentCurrencyAmount } from './payment-currency-amount';
export interface PaymentItem {
    amount: PaymentCurrencyAmount;
    label: string;
    pending?: boolean;
}
//# sourceMappingURL=payment-item.d.ts.map