/**
 * Enum for storing stripe payment methods
 */
declare enum StripePaymentMethods {
    CARD = "card",
    BANKCONTACT = "bancontact",
    EPS = "eps",
    GIROPAY = "giropay",
    IDEAL = "ideal",
    P24 = "p24",
    SEPA_DEBIT = "sepa_debit",
    SOFORT = "sofort",
    APPLE_PAY = "apple_pay",
    GOOGLE_PAY = "google_pay"
}
export { StripePaymentMethods as default };
