import type { OrderPayment } from '@unchainedshop/core-orders'; export interface PaymentDiscountPrice { item: OrderPayment; amount: number; currencyCode: string; discountId: string; } export declare function getPaymentDiscountsService(orderPayment: OrderPayment, currencyCode: string): PaymentDiscountPrice[];