import { CreditCardInformationType } from '../../types/credit-card-information.type.js';
import { PaymentInformationType } from '../../enums/payment-information-type.enum.js';
import { BusinessInformation } from '../../types/business-information.type.js';
import { PrivatePersonInformation } from '../../types/private-person-information.type.js';
import '../../types/address.type.js';
import '../../enums/country-code.enum.js';

declare class CreditCardPayment {
    readonly paymentType = PaymentInformationType.CREDIT_CARD;
    /**
     * @inheritDoc
     */
    debitor: CreditCardInformationType & (BusinessInformation | PrivatePersonInformation);
    /**
     * @inheritDoc
     */
    creditor: BusinessInformation | PrivatePersonInformation;
}

export { CreditCardPayment };
