/**
 * A string that represents the type of the payment method.
 *
 * The type of card the customer uses to complete the transaction.
 */
export declare enum ApplePayPaymentMethodType {
    DEBIT = "debit",
    CREDIT = "credit",
    PREPAID = "prepaid",
    STORE = "store"
}
