import ApmAdditionalAction from '../model/ApmAdditionalAction'; import PaymentStatus from '../model/PaymentStatus'; import PaymentError from './dto/PaymentError'; declare type InitBnplPaymentResponse = { paymentId: number; redirectUrl: string; paymentStatus: PaymentStatus; apmAdditionalAction: ApmAdditionalAction; paymentError: PaymentError; }; export default InitBnplPaymentResponse;