import { type PaymentType } from '../../enums/index.js';
import { PaymentCard } from './payment-card.js';
import { type IPaymentMethodDetails } from '../../types/index.js';
import { PaymentMethodUnderlyingDetails } from './payment-method-underlying-details.js';
export declare class PaymentMethodDetails {
    readonly type: PaymentType;
    readonly card: PaymentCard | null;
    readonly underlyingDetails: PaymentMethodUnderlyingDetails | null;
    constructor(paymentMethodDetails: IPaymentMethodDetails);
}
