import { PaymentInformationType } from '../enums/payment-information-type.enum.js';
import { SEPAPayment } from '../classes/payment-information/sepa-payment.js';
import '../types/sepa-information.type.js';
import '../types/business-information.type.js';
import '../types/address.type.js';
import '../enums/country-code.enum.js';
import '../types/private-person-information.type.js';

declare function getPaymentInformationConstructorByType(type: PaymentInformationType): typeof SEPAPayment;

export { getPaymentInformationConstructorByType };
