import { StripeResource } from '../StripeResource.js';
import { Customer } from './Customers.js';
import { SetupAttempt } from './SetupAttempts.js';
import { Charge } from './Charges.js';
import { MetadataParam, Emptyable, AddressParam, PaginationParams, Metadata, Address } from '../shared.js';
import { RequestOptions, ApiListPromise, Response } from '../lib.js';
export declare class PaymentMethodResource extends StripeResource {
    /**
     * Returns a list of all PaymentMethods.
     */
    list(params?: PaymentMethodListParams, options?: RequestOptions): ApiListPromise<PaymentMethod>;
    /**
     * Creates a PaymentMethod object. Read the [Stripe.js reference](https://docs.stripe.com/docs/stripe-js/reference#stripe-create-payment-method) to learn how to create PaymentMethods via Stripe.js.
     *
     * Instead of creating a PaymentMethod directly, we recommend using the [PaymentIntents API to accept a payment immediately or the <a href="/docs/payments/save-and-reuse">SetupIntent](https://docs.stripe.com/docs/payments/accept-a-payment) API to collect payment method details ahead of a future payment.
     */
    create(params?: PaymentMethodCreateParams, options?: RequestOptions): Promise<Response<PaymentMethod>>;
    /**
     * Retrieves a PaymentMethod object attached to the StripeAccount. To retrieve a payment method attached to a Customer, you should use [Retrieve a Customer's PaymentMethods](https://docs.stripe.com/docs/api/payment_methods/customer)
     */
    retrieve(id: string, params?: PaymentMethodRetrieveParams, options?: RequestOptions): Promise<Response<PaymentMethod>>;
    /**
     * Updates a PaymentMethod object. A PaymentMethod must be attached to a customer to be updated.
     */
    update(id: string, params?: PaymentMethodUpdateParams, options?: RequestOptions): Promise<Response<PaymentMethod>>;
    /**
     * Attaches a PaymentMethod object to a Customer.
     *
     * To attach a new PaymentMethod to a customer for future payments, we recommend you use a [SetupIntent](https://docs.stripe.com/docs/api/setup_intents)
     * or a PaymentIntent with [setup_future_usage](https://docs.stripe.com/docs/api/payment_intents/create#create_payment_intent-setup_future_usage).
     * These approaches will perform any necessary steps to set up the PaymentMethod for future payments. Using the /v1/payment_methods/:id/attach
     * endpoint without first using a SetupIntent or PaymentIntent with setup_future_usage does not optimize the PaymentMethod for
     * future use, which makes later declines and payment friction more likely.
     * See [Optimizing cards for future payments](https://docs.stripe.com/docs/payments/payment-intents#future-usage) for more information about setting up
     * future payments.
     *
     * To use this PaymentMethod as the default for invoice or subscription payments,
     * set [invoice_settings.default_payment_method](https://docs.stripe.com/docs/api/customers/update#update_customer-invoice_settings-default_payment_method),
     * on the Customer to the PaymentMethod's ID.
     */
    attach(id: string, params?: PaymentMethodAttachParams, options?: RequestOptions): Promise<Response<PaymentMethod>>;
    /**
     * Detaches a PaymentMethod object from a Customer. After a PaymentMethod is detached, it can no longer be used for a payment or re-attached to a Customer.
     */
    detach(id: string, params?: PaymentMethodDetachParams, options?: RequestOptions): Promise<Response<PaymentMethod>>;
}
export interface PaymentMethod {
    /**
     * Unique identifier for the object.
     */
    id: string;
    /**
     * String representing the object's type. Objects of the same type share the same value.
     */
    object: 'payment_method';
    acss_debit?: PaymentMethod.AcssDebit;
    affirm?: PaymentMethod.Affirm;
    afterpay_clearpay?: PaymentMethod.AfterpayClearpay;
    alipay?: PaymentMethod.Alipay;
    /**
     * This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow. The field defaults to “unspecified”.
     */
    allow_redisplay?: PaymentMethod.AllowRedisplay;
    alma?: PaymentMethod.Alma;
    amazon_pay?: PaymentMethod.AmazonPay;
    au_becs_debit?: PaymentMethod.AuBecsDebit;
    bacs_debit?: PaymentMethod.BacsDebit;
    bancontact?: PaymentMethod.Bancontact;
    billie?: PaymentMethod.Billie;
    billing_details: PaymentMethod.BillingDetails;
    blik?: PaymentMethod.Blik;
    boleto?: PaymentMethod.Boleto;
    card?: PaymentMethod.Card;
    card_present?: PaymentMethod.CardPresent;
    cashapp?: PaymentMethod.Cashapp;
    /**
     * Time at which the object was created. Measured in seconds since the Unix epoch.
     */
    created: number;
    crypto?: PaymentMethod.Crypto;
    custom?: PaymentMethod.Custom;
    /**
     * The ID of the Customer to which this PaymentMethod is saved. This will not be set when the PaymentMethod has not been saved to a Customer.
     */
    customer: string | Customer | null;
    customer_account: string | null;
    customer_balance?: PaymentMethod.CustomerBalance;
    eps?: PaymentMethod.Eps;
    fpx?: PaymentMethod.Fpx;
    giropay?: PaymentMethod.Giropay;
    grabpay?: PaymentMethod.Grabpay;
    ideal?: PaymentMethod.Ideal;
    interac_present?: PaymentMethod.InteracPresent;
    kakao_pay?: PaymentMethod.KakaoPay;
    klarna?: PaymentMethod.Klarna;
    konbini?: PaymentMethod.Konbini;
    kr_card?: PaymentMethod.KrCard;
    link?: PaymentMethod.Link;
    /**
     * If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
     */
    livemode: boolean;
    mb_way?: PaymentMethod.MbWay;
    /**
     * Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
     */
    metadata: Metadata | null;
    mobilepay?: PaymentMethod.Mobilepay;
    multibanco?: PaymentMethod.Multibanco;
    naver_pay?: PaymentMethod.NaverPay;
    nz_bank_account?: PaymentMethod.NzBankAccount;
    oxxo?: PaymentMethod.Oxxo;
    p24?: PaymentMethod.P24;
    pay_by_bank?: PaymentMethod.PayByBank;
    payco?: PaymentMethod.Payco;
    paynow?: PaymentMethod.Paynow;
    paypal?: PaymentMethod.Paypal;
    payto?: PaymentMethod.Payto;
    pix?: PaymentMethod.Pix;
    promptpay?: PaymentMethod.Promptpay;
    /**
     * Options to configure Radar. See [Radar Session](https://docs.stripe.com/radar/radar-session) for more information.
     */
    radar_options?: PaymentMethod.RadarOptions;
    revolut_pay?: PaymentMethod.RevolutPay;
    samsung_pay?: PaymentMethod.SamsungPay;
    satispay?: PaymentMethod.Satispay;
    sepa_debit?: PaymentMethod.SepaDebit;
    sofort?: PaymentMethod.Sofort;
    swish?: PaymentMethod.Swish;
    twint?: PaymentMethod.Twint;
    /**
     * The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type.
     */
    type: PaymentMethod.Type;
    upi?: PaymentMethod.Upi;
    us_bank_account?: PaymentMethod.UsBankAccount;
    wechat_pay?: PaymentMethod.WechatPay;
    zip?: PaymentMethod.Zip;
}
export declare namespace PaymentMethod {
    interface AcssDebit {
        /**
         * Name of the bank associated with the bank account.
         */
        bank_name: string | null;
        /**
         * Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
         */
        fingerprint: string | null;
        /**
         * Institution number of the bank account.
         */
        institution_number: string | null;
        /**
         * Last four digits of the bank account number.
         */
        last4: string | null;
        /**
         * Transit number of the bank account.
         */
        transit_number: string | null;
    }
    interface Affirm {
    }
    interface AfterpayClearpay {
    }
    interface Alipay {
    }
    type AllowRedisplay = 'always' | 'limited' | 'unspecified';
    interface Alma {
    }
    interface AmazonPay {
    }
    interface AuBecsDebit {
        /**
         * Six-digit number identifying bank and branch associated with this bank account.
         */
        bsb_number: string | null;
        /**
         * Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
         */
        fingerprint: string | null;
        /**
         * Last four digits of the bank account number.
         */
        last4: string | null;
    }
    interface BacsDebit {
        /**
         * Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
         */
        fingerprint: string | null;
        /**
         * Last four digits of the bank account number.
         */
        last4: string | null;
        /**
         * Sort code of the bank account. (e.g., `10-20-30`)
         */
        sort_code: string | null;
    }
    interface Bancontact {
    }
    interface Billie {
    }
    interface BillingDetails {
        /**
         * Billing address.
         */
        address: Address | null;
        /**
         * Email address.
         */
        email: string | null;
        /**
         * Full name.
         */
        name: string | null;
        /**
         * Billing phone number (including extension).
         */
        phone: string | null;
        /**
         * Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers.
         */
        tax_id: string | null;
    }
    interface Blik {
    }
    interface Boleto {
        /**
         * Uniquely identifies the customer tax id (CNPJ or CPF)
         */
        tax_id: string;
    }
    interface Card {
        /**
         * Card brand. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa` or `unknown`.
         */
        brand: string;
        /**
         * Checks on Card address and CVC if provided.
         */
        checks: Card.Checks | null;
        /**
         * Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
         */
        country: string | null;
        /**
         * A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
         */
        description?: string | null;
        /**
         * The brand to use when displaying the card, this accounts for customer's brand choice on dual-branded cards. Can be `american_express`, `cartes_bancaires`, `diners_club`, `discover`, `eftpos_australia`, `interac`, `jcb`, `mastercard`, `union_pay`, `visa`, or `other` and may contain more values in the future.
         */
        display_brand: string | null;
        /**
         * Two-digit number representing the card's expiration month.
         */
        exp_month: number;
        /**
         * Four-digit number representing the card's expiration year.
         */
        exp_year: number;
        /**
         * Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
         *
         * *As of May 1, 2021, card fingerprint in India for Connect changed to allow two fingerprints for the same card---one for India and one for the rest of the world.*
         */
        fingerprint?: string | null;
        /**
         * Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.
         */
        funding: string;
        /**
         * Details of the original PaymentMethod that created this object.
         */
        generated_from: Card.GeneratedFrom | null;
        /**
         * Issuer identification number of the card. (For internal use only and not typically available in standard API requests.)
         */
        iin?: string | null;
        /**
         * The name of the card's issuing bank. (For internal use only and not typically available in standard API requests.)
         */
        issuer?: string | null;
        /**
         * The last four digits of the card.
         */
        last4: string;
        /**
         * Contains information about card networks that can be used to process the payment.
         */
        networks: Card.Networks | null;
        /**
         * Status of a card based on the card issuer.
         */
        regulated_status: Card.RegulatedStatus | null;
        /**
         * Contains details on how this Card may be used for 3D Secure authentication.
         */
        three_d_secure_usage: Card.ThreeDSecureUsage | null;
        /**
         * If this Card is part of a card wallet, this contains the details of the card wallet.
         */
        wallet: Card.Wallet | null;
    }
    interface CardPresent {
        /**
         * Card brand. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa` or `unknown`.
         */
        brand: string | null;
        /**
         * The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card.
         */
        brand_product: string | null;
        /**
         * The cardholder name as read from the card, in [ISO 7813](https://en.wikipedia.org/wiki/ISO/IEC_7813) format. May include alphanumeric characters, special characters and first/last name separator (`/`). In some cases, the cardholder name may not be available depending on how the issuer has configured the card. Cardholder name is typically not available on swipe or contactless payments, such as those made with Apple Pay and Google Pay.
         */
        cardholder_name: string | null;
        /**
         * Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
         */
        country: string | null;
        /**
         * A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
         */
        description?: string | null;
        /**
         * Two-digit number representing the card's expiration month.
         */
        exp_month: number;
        /**
         * Four-digit number representing the card's expiration year.
         */
        exp_year: number;
        /**
         * Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
         *
         * *As of May 1, 2021, card fingerprint in India for Connect changed to allow two fingerprints for the same card---one for India and one for the rest of the world.*
         */
        fingerprint: string | null;
        /**
         * Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.
         */
        funding: string | null;
        /**
         * Issuer identification number of the card. (For internal use only and not typically available in standard API requests.)
         */
        iin?: string | null;
        /**
         * The name of the card's issuing bank. (For internal use only and not typically available in standard API requests.)
         */
        issuer?: string | null;
        /**
         * The last four digits of the card.
         */
        last4: string | null;
        /**
         * Contains information about card networks that can be used to process the payment.
         */
        networks: CardPresent.Networks | null;
        /**
         * Details about payment methods collected offline.
         */
        offline: CardPresent.Offline | null;
        /**
         * The languages that the issuing bank recommends using for localizing any customer-facing text, as read from the card. Referenced from EMV tag 5F2D, data encoded on the card's chip.
         */
        preferred_locales: Array<string> | null;
        /**
         * How card details were read in this transaction.
         */
        read_method: CardPresent.ReadMethod | null;
        wallet?: CardPresent.Wallet;
    }
    interface Cashapp {
        /**
         * A unique and immutable identifier assigned by Cash App to every buyer.
         */
        buyer_id: string | null;
        /**
         * A public identifier for buyers using Cash App.
         */
        cashtag: string | null;
    }
    interface Crypto {
    }
    interface Custom {
        /**
         * Display name of the Dashboard-only CustomPaymentMethodType.
         */
        display_name: string | null;
        /**
         * Contains information about the Dashboard-only CustomPaymentMethodType logo.
         */
        logo: Custom.Logo | null;
        /**
         * ID of the Dashboard-only CustomPaymentMethodType. Not expandable.
         */
        type: string;
    }
    interface CustomerBalance {
    }
    interface Eps {
        /**
         * The customer's bank. Should be one of `arzte_und_apotheker_bank`, `austrian_anadi_bank_ag`, `bank_austria`, `bankhaus_carl_spangler`, `bankhaus_schelhammer_und_schattera_ag`, `bawag_psk_ag`, `bks_bank_ag`, `brull_kallmus_bank_ag`, `btv_vier_lander_bank`, `capital_bank_grawe_gruppe_ag`, `deutsche_bank_ag`, `dolomitenbank`, `easybank_ag`, `erste_bank_und_sparkassen`, `hypo_alpeadriabank_international_ag`, `hypo_noe_lb_fur_niederosterreich_u_wien`, `hypo_oberosterreich_salzburg_steiermark`, `hypo_tirol_bank_ag`, `hypo_vorarlberg_bank_ag`, `hypo_bank_burgenland_aktiengesellschaft`, `marchfelder_bank`, `oberbank_ag`, `raiffeisen_bankengruppe_osterreich`, `schoellerbank_ag`, `sparda_bank_wien`, `volksbank_gruppe`, `volkskreditbank_ag`, or `vr_bank_braunau`.
         */
        bank: Eps.Bank | null;
    }
    interface Fpx {
        /**
         * Account holder type, if provided. Can be one of `individual` or `company`.
         */
        account_holder_type: Fpx.AccountHolderType | null;
        /**
         * The customer's bank, if provided. Can be one of `affin_bank`, `agrobank`, `alliance_bank`, `ambank`, `bank_islam`, `bank_muamalat`, `bank_rakyat`, `bsn`, `cimb`, `hong_leong_bank`, `hsbc`, `kfh`, `maybank2u`, `ocbc`, `public_bank`, `rhb`, `standard_chartered`, `uob`, `deutsche_bank`, `maybank2e`, `pb_enterprise`, or `bank_of_china`.
         */
        bank: Fpx.Bank;
    }
    interface Giropay {
    }
    interface Grabpay {
    }
    interface Ideal {
        /**
         * The customer's bank, if provided. Can be one of `abn_amro`, `adyen`, `asn_bank`, `bunq`, `buut`, `finom`, `handelsbanken`, `ing`, `knab`, `mollie`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
         */
        bank: Ideal.Bank | null;
        /**
         * The Bank Identifier Code of the customer's bank, if the bank was provided.
         */
        bic: Ideal.Bic | null;
    }
    interface InteracPresent {
        /**
         * Card brand. Can be `interac`, `mastercard` or `visa`.
         */
        brand: string | null;
        /**
         * The cardholder name as read from the card, in [ISO 7813](https://en.wikipedia.org/wiki/ISO/IEC_7813) format. May include alphanumeric characters, special characters and first/last name separator (`/`). In some cases, the cardholder name may not be available depending on how the issuer has configured the card. Cardholder name is typically not available on swipe or contactless payments, such as those made with Apple Pay and Google Pay.
         */
        cardholder_name: string | null;
        /**
         * Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
         */
        country: string | null;
        /**
         * A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
         */
        description?: string | null;
        /**
         * Two-digit number representing the card's expiration month.
         */
        exp_month: number;
        /**
         * Four-digit number representing the card's expiration year.
         */
        exp_year: number;
        /**
         * Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
         *
         * *As of May 1, 2021, card fingerprint in India for Connect changed to allow two fingerprints for the same card---one for India and one for the rest of the world.*
         */
        fingerprint: string | null;
        /**
         * Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.
         */
        funding: string | null;
        /**
         * Issuer identification number of the card. (For internal use only and not typically available in standard API requests.)
         */
        iin?: string | null;
        /**
         * The name of the card's issuing bank. (For internal use only and not typically available in standard API requests.)
         */
        issuer?: string | null;
        /**
         * The last four digits of the card.
         */
        last4: string | null;
        /**
         * Contains information about card networks that can be used to process the payment.
         */
        networks: InteracPresent.Networks | null;
        /**
         * The languages that the issuing bank recommends using for localizing any customer-facing text, as read from the card. Referenced from EMV tag 5F2D, data encoded on the card's chip.
         */
        preferred_locales: Array<string> | null;
        /**
         * How card details were read in this transaction.
         */
        read_method: InteracPresent.ReadMethod | null;
    }
    interface KakaoPay {
    }
    interface Klarna {
        /**
         * The customer's date of birth, if provided.
         */
        dob?: Klarna.Dob | null;
    }
    interface Konbini {
    }
    interface KrCard {
        /**
         * The local credit or debit card brand.
         */
        brand: KrCard.Brand | null;
        /**
         * The last four digits of the card. This may not be present for American Express cards.
         */
        last4: string | null;
    }
    interface Link {
        /**
         * Account owner's email address.
         */
        email: string | null;
        /**
         * [Deprecated] This is a legacy parameter that no longer has any function.
         * @deprecated
         */
        persistent_token?: string;
    }
    interface MbWay {
    }
    interface Mobilepay {
    }
    interface Multibanco {
    }
    interface NaverPay {
        /**
         * Uniquely identifies this particular Naver Pay account. You can use this attribute to check whether two Naver Pay accounts are the same.
         */
        buyer_id: string | null;
        /**
         * Whether to fund this transaction with Naver Pay points or a card.
         */
        funding: NaverPay.Funding;
    }
    interface NzBankAccount {
        /**
         * The name on the bank account. Only present if the account holder name is different from the name of the authorized signatory collected in the PaymentMethod's billing details.
         */
        account_holder_name: string | null;
        /**
         * The numeric code for the bank account's bank.
         */
        bank_code: string;
        /**
         * The name of the bank.
         */
        bank_name: string;
        /**
         * The numeric code for the bank account's bank branch.
         */
        branch_code: string;
        /**
         * Last four digits of the bank account number.
         */
        last4: string;
        /**
         * The suffix of the bank account number.
         */
        suffix: string | null;
    }
    interface Oxxo {
    }
    interface P24 {
        /**
         * The customer's bank, if provided.
         */
        bank: P24.Bank | null;
    }
    interface PayByBank {
    }
    interface Payco {
    }
    interface Paynow {
    }
    interface Paypal {
        /**
         * Two-letter ISO code representing the buyer's country. Values are provided by PayPal directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
         */
        country: string | null;
        /**
         * Owner's email. Values are provided by PayPal directly
         * (if supported) at the time of authorization or settlement. They cannot be set or mutated.
         */
        payer_email: string | null;
        /**
         * PayPal account PayerID. This identifier uniquely identifies the PayPal customer.
         */
        payer_id: string | null;
    }
    interface Payto {
        /**
         * Bank-State-Branch number of the bank account.
         */
        bsb_number: string | null;
        /**
         * Last four digits of the bank account number.
         */
        last4: string | null;
        /**
         * The PayID alias for the bank account.
         */
        pay_id: string | null;
    }
    interface Pix {
    }
    interface Promptpay {
    }
    interface RadarOptions {
        /**
         * A [Radar Session](https://docs.stripe.com/radar/radar-session) is a snapshot of the browser metadata and device details that help Radar make more accurate predictions on your payments.
         */
        session?: string;
    }
    interface RevolutPay {
    }
    interface SamsungPay {
    }
    interface Satispay {
    }
    interface SepaDebit {
        /**
         * Bank code of bank associated with the bank account.
         */
        bank_code: string | null;
        /**
         * Branch code of bank associated with the bank account.
         */
        branch_code: string | null;
        /**
         * Two-letter ISO code representing the country the bank account is located in.
         */
        country: string | null;
        /**
         * Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
         */
        fingerprint: string | null;
        /**
         * Information about the object that generated this PaymentMethod.
         */
        generated_from: SepaDebit.GeneratedFrom | null;
        /**
         * Last four characters of the IBAN.
         */
        last4: string | null;
    }
    interface Sofort {
        /**
         * Two-letter ISO code representing the country the bank account is located in.
         */
        country: string | null;
    }
    interface Swish {
    }
    interface Twint {
    }
    type Type = 'acss_debit' | 'affirm' | 'afterpay_clearpay' | 'alipay' | 'alma' | 'amazon_pay' | 'au_becs_debit' | 'bacs_debit' | 'bancontact' | 'billie' | 'blik' | 'boleto' | 'card' | 'card_present' | 'cashapp' | 'crypto' | 'custom' | 'customer_balance' | 'eps' | 'fpx' | 'giropay' | 'grabpay' | 'ideal' | 'interac_present' | 'kakao_pay' | 'klarna' | 'konbini' | 'kr_card' | 'link' | 'mb_way' | 'mobilepay' | 'multibanco' | 'naver_pay' | 'nz_bank_account' | 'oxxo' | 'p24' | 'pay_by_bank' | 'payco' | 'paynow' | 'paypal' | 'payto' | 'pix' | 'promptpay' | 'revolut_pay' | 'samsung_pay' | 'satispay' | 'sepa_debit' | 'sofort' | 'swish' | 'twint' | 'upi' | 'us_bank_account' | 'wechat_pay' | 'zip';
    interface Upi {
        /**
         * Customer's unique Virtual Payment Address
         */
        vpa: string | null;
    }
    interface UsBankAccount {
        /**
         * Account holder type: individual or company.
         */
        account_holder_type: UsBankAccount.AccountHolderType | null;
        /**
         * Account type: checkings or savings. Defaults to checking if omitted.
         */
        account_type: UsBankAccount.AccountType | null;
        /**
         * The name of the bank.
         */
        bank_name: string | null;
        /**
         * The ID of the Financial Connections Account used to create the payment method.
         */
        financial_connections_account: string | null;
        /**
         * Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
         */
        fingerprint: string | null;
        /**
         * Last four digits of the bank account number.
         */
        last4: string | null;
        /**
         * Contains information about US bank account networks that can be used.
         */
        networks: UsBankAccount.Networks | null;
        /**
         * Routing number of the bank account.
         */
        routing_number: string | null;
        /**
         * Contains information about the future reusability of this PaymentMethod.
         */
        status_details: UsBankAccount.StatusDetails | null;
    }
    interface WechatPay {
    }
    interface Zip {
    }
    namespace Card {
        interface Checks {
            /**
             * If a address line1 was provided, results of the check, one of `pass`, `fail`, `unavailable`, or `unchecked`.
             */
            address_line1_check: string | null;
            /**
             * If a address postal code was provided, results of the check, one of `pass`, `fail`, `unavailable`, or `unchecked`.
             */
            address_postal_code_check: string | null;
            /**
             * If a CVC was provided, results of the check, one of `pass`, `fail`, `unavailable`, or `unchecked`.
             */
            cvc_check: string | null;
        }
        interface GeneratedFrom {
            /**
             * The charge that created this object.
             */
            charge: string | null;
            /**
             * Transaction-specific details of the payment method used in the payment.
             */
            payment_method_details: GeneratedFrom.PaymentMethodDetails | null;
            /**
             * The ID of the SetupAttempt that generated this PaymentMethod, if any.
             */
            setup_attempt: string | SetupAttempt | null;
        }
        interface Networks {
            /**
             * All networks available for selection via [payment_method_options.card.network](https://docs.stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network).
             */
            available: Array<string>;
            /**
             * The preferred network for co-branded cards. Can be `cartes_bancaires`, `mastercard`, `visa` or `invalid_preference` if requested network is not valid for the card.
             */
            preferred: string | null;
        }
        type RegulatedStatus = 'regulated' | 'unregulated';
        interface ThreeDSecureUsage {
            /**
             * Whether 3D Secure is supported on this card.
             */
            supported: boolean;
        }
        interface Wallet {
            amex_express_checkout?: Wallet.AmexExpressCheckout;
            apple_pay?: Wallet.ApplePay;
            /**
             * (For tokenized numbers only.) The last four digits of the device account number.
             */
            dynamic_last4: string | null;
            google_pay?: Wallet.GooglePay;
            link?: Wallet.Link;
            masterpass?: Wallet.Masterpass;
            samsung_pay?: Wallet.SamsungPay;
            /**
             * The type of the card wallet, one of `amex_express_checkout`, `apple_pay`, `google_pay`, `masterpass`, `samsung_pay`, `visa_checkout`, or `link`. An additional hash is included on the Wallet subhash with a name matching this value. It contains additional information specific to the card wallet type.
             */
            type: Wallet.Type;
            visa_checkout?: Wallet.VisaCheckout;
        }
        namespace GeneratedFrom {
            interface PaymentMethodDetails {
                card_present?: PaymentMethodDetails.CardPresent;
                /**
                 * The type of payment method transaction-specific details from the transaction that generated this `card` payment method. Always `card_present`.
                 */
                type: string;
            }
            namespace PaymentMethodDetails {
                interface CardPresent {
                    /**
                     * The authorized amount
                     */
                    amount_authorized: number | null;
                    /**
                     * Card brand. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa` or `unknown`.
                     */
                    brand: string | null;
                    /**
                     * The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card.
                     */
                    brand_product: string | null;
                    /**
                     * When using manual capture, a future timestamp after which the charge will be automatically refunded if uncaptured.
                     */
                    capture_before?: number;
                    /**
                     * The cardholder name as read from the card, in [ISO 7813](https://en.wikipedia.org/wiki/ISO/IEC_7813) format. May include alphanumeric characters, special characters and first/last name separator (`/`). In some cases, the cardholder name may not be available depending on how the issuer has configured the card. Cardholder name is typically not available on swipe or contactless payments, such as those made with Apple Pay and Google Pay.
                     */
                    cardholder_name: string | null;
                    /**
                     * Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
                     */
                    country: string | null;
                    /**
                     * A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
                     */
                    description?: string | null;
                    /**
                     * Authorization response cryptogram.
                     */
                    emv_auth_data: string | null;
                    /**
                     * Two-digit number representing the card's expiration month.
                     */
                    exp_month: number;
                    /**
                     * Four-digit number representing the card's expiration year.
                     */
                    exp_year: number;
                    /**
                     * Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
                     *
                     * *As of May 1, 2021, card fingerprint in India for Connect changed to allow two fingerprints for the same card---one for India and one for the rest of the world.*
                     */
                    fingerprint: string | null;
                    /**
                     * Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.
                     */
                    funding: string | null;
                    /**
                     * ID of a card PaymentMethod generated from the card_present PaymentMethod that may be attached to a Customer for future transactions. Only present if it was possible to generate a card PaymentMethod.
                     */
                    generated_card: string | null;
                    /**
                     * Issuer identification number of the card. (For internal use only and not typically available in standard API requests.)
                     */
                    iin?: string | null;
                    /**
                     * Whether this [PaymentIntent](https://docs.stripe.com/api/payment_intents) is eligible for incremental authorizations. Request support using [request_incremental_authorization_support](https://docs.stripe.com/api/payment_intents/create#create_payment_intent-payment_method_options-card_present-request_incremental_authorization_support).
                     */
                    incremental_authorization_supported: boolean;
                    /**
                     * The name of the card's issuing bank. (For internal use only and not typically available in standard API requests.)
                     */
                    issuer?: string | null;
                    /**
                     * The last four digits of the card.
                     */
                    last4: string | null;
                    /**
                     * ID of the [location](https://docs.stripe.com/api/terminal/locations) that this transaction's reader is assigned to.
                     */
                    location?: string;
                    /**
                     * Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
                     */
                    network: string | null;
                    /**
                     * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise.
                     */
                    network_transaction_id: string | null;
                    /**
                     * Details about payments collected offline.
                     */
                    offline: CardPresent.Offline | null;
                    /**
                     * Defines whether the authorized amount can be over-captured or not
                     */
                    overcapture_supported: boolean;
                    /**
                     * The languages that the issuing bank recommends using for localizing any customer-facing text, as read from the card. Referenced from EMV tag 5F2D, data encoded on the card's chip.
                     */
                    preferred_locales: Array<string> | null;
                    /**
                     * How card details were read in this transaction.
                     */
                    read_method: CardPresent.ReadMethod | null;
                    /**
                     * ID of the [reader](https://docs.stripe.com/api/terminal/readers) this transaction was made on.
                     */
                    reader?: string;
                    /**
                     * A collection of fields required to be displayed on receipts. Only required for EMV transactions.
                     */
                    receipt: CardPresent.Receipt | null;
                    wallet?: CardPresent.Wallet;
                }
                namespace CardPresent {
                    interface Offline {
                        /**
                         * Time at which the payment was collected while offline
                         */
                        stored_at: number | null;
                        /**
                         * The method used to process this payment method offline. Only deferred is allowed.
                         */
                        type: 'deferred' | null;
                    }
                    type ReadMethod = 'contact_emv' | 'contactless_emv' | 'contactless_magstripe_mode' | 'magnetic_stripe_fallback' | 'magnetic_stripe_track2';
                    interface Receipt {
                        /**
                         * The type of account being debited or credited
                         */
                        account_type?: Receipt.AccountType;
                        /**
                         * The Application Cryptogram, a unique value generated by the card to authenticate the transaction with issuers.
                         */
                        application_cryptogram: string | null;
                        /**
                         * The Application Identifier (AID) on the card used to determine which networks are eligible to process the transaction. Referenced from EMV tag 9F12, data encoded on the card's chip.
                         */
                        application_preferred_name: string | null;
                        /**
                         * Identifier for this transaction.
                         */
                        authorization_code: string | null;
                        /**
                         * EMV tag 8A. A code returned by the card issuer.
                         */
                        authorization_response_code: string | null;
                        /**
                         * Describes the method used by the cardholder to verify ownership of the card. One of the following: `approval`, `failure`, `none`, `offline_pin`, `offline_pin_and_signature`, `online_pin`, or `signature`.
                         */
                        cardholder_verification_method: string | null;
                        /**
                         * Similar to the application_preferred_name, identifying the applications (AIDs) available on the card. Referenced from EMV tag 84.
                         */
                        dedicated_file_name: string | null;
                        /**
                         * A 5-byte string that records the checks and validations that occur between the card and the terminal. These checks determine how the terminal processes the transaction and what risk tolerance is acceptable. Referenced from EMV Tag 95.
                         */
                        terminal_verification_results: string | null;
                        /**
                         * An indication of which steps were completed during the card read process. Referenced from EMV Tag 9B.
                         */
                        transaction_status_information: string | null;
                    }
                    interface Wallet {
                        /**
                         * The type of mobile wallet, one of `apple_pay`, `google_pay`, `samsung_pay`, or `unknown`.
                         */
                        type: Wallet.Type;
                    }
                    namespace Receipt {
                        type AccountType = 'checking' | 'credit' | 'prepaid' | 'unknown';
                    }
                    namespace Wallet {
                        type Type = 'apple_pay' | 'google_pay' | 'samsung_pay' | 'unknown';
                    }
                }
            }
        }
        namespace Wallet {
            interface AmexExpressCheckout {
            }
            interface ApplePay {
            }
            interface GooglePay {
            }
            interface Link {
            }
            interface Masterpass {
                /**
                 * Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                billing_address: Address | null;
                /**
                 * Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                email: string | null;
                /**
                 * Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                name: string | null;
                /**
                 * Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                shipping_address: Address | null;
            }
            interface SamsungPay {
            }
            type Type = 'amex_express_checkout' | 'apple_pay' | 'google_pay' | 'link' | 'masterpass' | 'samsung_pay' | 'visa_checkout';
            interface VisaCheckout {
                /**
                 * Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                billing_address: Address | null;
                /**
                 * Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                email: string | null;
                /**
                 * Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                name: string | null;
                /**
                 * Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
                 */
                shipping_address: Address | null;
            }
        }
    }
    namespace CardPresent {
        interface Networks {
            /**
             * All networks available for selection via [payment_method_options.card.network](https://docs.stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network).
             */
            available: Array<string>;
            /**
             * The preferred network for the card.
             */
            preferred: string | null;
        }
        interface Offline {
            /**
             * Time at which the payment was collected while offline
             */
            stored_at: number | null;
            /**
             * The method used to process this payment method offline. Only deferred is allowed.
             */
            type: 'deferred' | null;
        }
        type ReadMethod = 'contact_emv' | 'contactless_emv' | 'contactless_magstripe_mode' | 'magnetic_stripe_fallback' | 'magnetic_stripe_track2';
        interface Wallet {
            /**
             * The type of mobile wallet, one of `apple_pay`, `google_pay`, `samsung_pay`, or `unknown`.
             */
            type: Wallet.Type;
        }
        namespace Wallet {
            type Type = 'apple_pay' | 'google_pay' | 'samsung_pay' | 'unknown';
        }
    }
    namespace Custom {
        interface Logo {
            /**
             * Content type of the Dashboard-only CustomPaymentMethodType logo.
             */
            content_type: string | null;
            /**
             * URL of the Dashboard-only CustomPaymentMethodType logo.
             */
            url: string;
        }
    }
    namespace Eps {
        type Bank = 'arzte_und_apotheker_bank' | 'austrian_anadi_bank_ag' | 'bank_austria' | 'bankhaus_carl_spangler' | 'bankhaus_schelhammer_und_schattera_ag' | 'bawag_psk_ag' | 'bks_bank_ag' | 'brull_kallmus_bank_ag' | 'btv_vier_lander_bank' | 'capital_bank_grawe_gruppe_ag' | 'deutsche_bank_ag' | 'dolomitenbank' | 'easybank_ag' | 'erste_bank_und_sparkassen' | 'hypo_alpeadriabank_international_ag' | 'hypo_bank_burgenland_aktiengesellschaft' | 'hypo_noe_lb_fur_niederosterreich_u_wien' | 'hypo_oberosterreich_salzburg_steiermark' | 'hypo_tirol_bank_ag' | 'hypo_vorarlberg_bank_ag' | 'marchfelder_bank' | 'oberbank_ag' | 'raiffeisen_bankengruppe_osterreich' | 'schoellerbank_ag' | 'sparda_bank_wien' | 'volksbank_gruppe' | 'volkskreditbank_ag' | 'vr_bank_braunau';
    }
    namespace Fpx {
        type AccountHolderType = 'company' | 'individual';
        type Bank = 'affin_bank' | 'agrobank' | 'alliance_bank' | 'ambank' | 'bank_islam' | 'bank_muamalat' | 'bank_of_china' | 'bank_rakyat' | 'bsn' | 'cimb' | 'deutsche_bank' | 'hong_leong_bank' | 'hsbc' | 'kfh' | 'maybank2e' | 'maybank2u' | 'ocbc' | 'pb_enterprise' | 'public_bank' | 'rhb' | 'standard_chartered' | 'uob';
    }
    namespace Ideal {
        type Bank = 'abn_amro' | 'adyen' | 'asn_bank' | 'bunq' | 'buut' | 'finom' | 'handelsbanken' | 'ing' | 'knab' | 'mollie' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
        type Bic = 'ABNANL2A' | 'ADYBNL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'BUUTNL2A' | 'FNOMNL22' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MLLENL2A' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
    }
    namespace InteracPresent {
        interface Networks {
            /**
             * All networks available for selection via [payment_method_options.card.network](https://docs.stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network).
             */
            available: Array<string>;
            /**
             * The preferred network for the card.
             */
            preferred: string | null;
        }
        type ReadMethod = 'contact_emv' | 'contactless_emv' | 'contactless_magstripe_mode' | 'magnetic_stripe_fallback' | 'magnetic_stripe_track2';
    }
    namespace Klarna {
        interface Dob {
            /**
             * The day of birth, between 1 and 31.
             */
            day: number | null;
            /**
             * The month of birth, between 1 and 12.
             */
            month: number | null;
            /**
             * The four-digit year of birth.
             */
            year: number | null;
        }
    }
    namespace KrCard {
        type Brand = 'bc' | 'citi' | 'hana' | 'hyundai' | 'jeju' | 'jeonbuk' | 'kakaobank' | 'kbank' | 'kdbbank' | 'kookmin' | 'kwangju' | 'lotte' | 'mg' | 'nh' | 'post' | 'samsung' | 'savingsbank' | 'shinhan' | 'shinhyup' | 'suhyup' | 'tossbank' | 'woori';
    }
    namespace NaverPay {
        type Funding = 'card' | 'points';
    }
    namespace P24 {
        type Bank = 'alior_bank' | 'bank_millennium' | 'bank_nowy_bfg_sa' | 'bank_pekao_sa' | 'banki_spbdzielcze' | 'blik' | 'bnp_paribas' | 'boz' | 'citi_handlowy' | 'credit_agricole' | 'envelobank' | 'etransfer_pocztowy24' | 'getin_bank' | 'ideabank' | 'ing' | 'inteligo' | 'mbank_mtransfer' | 'nest_przelew' | 'noble_pay' | 'pbac_z_ipko' | 'plus_bank' | 'santander_przelew24' | 'tmobile_usbugi_bankowe' | 'toyota_bank' | 'velobank' | 'volkswagen_bank';
    }
    namespace SepaDebit {
        interface GeneratedFrom {
            /**
             * The ID of the Charge that generated this PaymentMethod, if any.
             */
            charge: string | Charge | null;
            /**
             * The ID of the SetupAttempt that generated this PaymentMethod, if any.
             */
            setup_attempt: string | SetupAttempt | null;
        }
    }
    namespace UsBankAccount {
        type AccountHolderType = 'company' | 'individual';
        type AccountType = 'checking' | 'savings';
        interface Networks {
            /**
             * The preferred network.
             */
            preferred: string | null;
            /**
             * All supported networks.
             */
            supported: Array<Networks.Supported>;
        }
        interface StatusDetails {
            blocked?: StatusDetails.Blocked;
        }
        namespace Networks {
            type Supported = 'ach' | 'us_domestic_wire';
        }
        namespace StatusDetails {
            interface Blocked {
                /**
                 * The ACH network code that resulted in this block.
                 */
                network_code: Blocked.NetworkCode | null;
                /**
                 * The reason why this PaymentMethod's fingerprint has been blocked
                 */
                reason: Blocked.Reason | null;
            }
            namespace Blocked {
                type NetworkCode = 'R02' | 'R03' | 'R04' | 'R05' | 'R07' | 'R08' | 'R10' | 'R11' | 'R16' | 'R20' | 'R29' | 'R31';
                type Reason = 'bank_account_closed' | 'bank_account_frozen' | 'bank_account_invalid_details' | 'bank_account_restricted' | 'bank_account_unusable' | 'debit_not_authorized' | 'tokenized_account_number_deactivated';
            }
        }
    }
}
export interface PaymentMethodCreateParams {
    /**
     * If this is an `acss_debit` PaymentMethod, this hash contains details about the ACSS Debit payment method.
     */
    acss_debit?: PaymentMethodCreateParams.AcssDebit;
    /**
     * If this is an `affirm` PaymentMethod, this hash contains details about the Affirm payment method.
     */
    affirm?: PaymentMethodCreateParams.Affirm;
    /**
     * If this is an `AfterpayClearpay` PaymentMethod, this hash contains details about the AfterpayClearpay payment method.
     */
    afterpay_clearpay?: PaymentMethodCreateParams.AfterpayClearpay;
    /**
     * If this is an `Alipay` PaymentMethod, this hash contains details about the Alipay payment method.
     */
    alipay?: PaymentMethodCreateParams.Alipay;
    /**
     * This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow. The field defaults to `unspecified`.
     */
    allow_redisplay?: PaymentMethodCreateParams.AllowRedisplay;
    /**
     * If this is a Alma PaymentMethod, this hash contains details about the Alma payment method.
     */
    alma?: PaymentMethodCreateParams.Alma;
    /**
     * If this is a AmazonPay PaymentMethod, this hash contains details about the AmazonPay payment method.
     */
    amazon_pay?: PaymentMethodCreateParams.AmazonPay;
    /**
     * If this is an `au_becs_debit` PaymentMethod, this hash contains details about the bank account.
     */
    au_becs_debit?: PaymentMethodCreateParams.AuBecsDebit;
    /**
     * If this is a `bacs_debit` PaymentMethod, this hash contains details about the Bacs Direct Debit bank account.
     */
    bacs_debit?: PaymentMethodCreateParams.BacsDebit;
    /**
     * If this is a `bancontact` PaymentMethod, this hash contains details about the Bancontact payment method.
     */
    bancontact?: PaymentMethodCreateParams.Bancontact;
    /**
     * If this is a `billie` PaymentMethod, this hash contains details about the Billie payment method.
     */
    billie?: PaymentMethodCreateParams.Billie;
    /**
     * Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.
     */
    billing_details?: PaymentMethodCreateParams.BillingDetails;
    /**
     * If this is a `blik` PaymentMethod, this hash contains details about the BLIK payment method.
     */
    blik?: PaymentMethodCreateParams.Blik;
    /**
     * If this is a `boleto` PaymentMethod, this hash contains details about the Boleto payment method.
     */
    boleto?: PaymentMethodCreateParams.Boleto;
    /**
     * If this is a `card` PaymentMethod, this hash contains the user's card details. For backwards compatibility, you can alternatively provide a Stripe token (e.g., for Apple Pay, Amex Express Checkout, or legacy Checkout) into the card hash with format `card: {token: "tok_visa"}`. When providing a card number, you must meet the requirements for [PCI compliance](https://stripe.com/docs/security#validating-pci-compliance). We strongly recommend using Stripe.js instead of interacting with this API directly.
     */
    card?: PaymentMethodCreateParams.Card;
    /**
     * If this is a `cashapp` PaymentMethod, this hash contains details about the Cash App Pay payment method.
     */
    cashapp?: PaymentMethodCreateParams.Cashapp;
    /**
     * If this is a Crypto PaymentMethod, this hash contains details about the Crypto payment method.
     */
    crypto?: PaymentMethodCreateParams.Crypto;
    /**
     * If this is a `custom` PaymentMethod, this hash contains details about the Custom payment method.
     */
    custom?: PaymentMethodCreateParams.Custom;
    /**
     * The `Customer` to whom the original PaymentMethod is attached.
     */
    customer?: string;
    /**
     * If this is a `customer_balance` PaymentMethod, this hash contains details about the CustomerBalance payment method.
     */
    customer_balance?: PaymentMethodCreateParams.CustomerBalance;
    /**
     * If this is an `eps` PaymentMethod, this hash contains details about the EPS payment method.
     */
    eps?: PaymentMethodCreateParams.Eps;
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
    /**
     * If this is an `fpx` PaymentMethod, this hash contains details about the FPX payment method.
     */
    fpx?: PaymentMethodCreateParams.Fpx;
    /**
     * If this is a `giropay` PaymentMethod, this hash contains details about the Giropay payment method.
     */
    giropay?: PaymentMethodCreateParams.Giropay;
    /**
     * If this is a `grabpay` PaymentMethod, this hash contains details about the GrabPay payment method.
     */
    grabpay?: PaymentMethodCreateParams.Grabpay;
    /**
     * If this is an `ideal` PaymentMethod, this hash contains details about the iDEAL payment method.
     */
    ideal?: PaymentMethodCreateParams.Ideal;
    /**
     * If this is an `interac_present` PaymentMethod, this hash contains details about the Interac Present payment method.
     */
    interac_present?: PaymentMethodCreateParams.InteracPresent;
    /**
     * If this is a `kakao_pay` PaymentMethod, this hash contains details about the Kakao Pay payment method.
     */
    kakao_pay?: PaymentMethodCreateParams.KakaoPay;
    /**
     * If this is a `klarna` PaymentMethod, this hash contains details about the Klarna payment method.
     */
    klarna?: PaymentMethodCreateParams.Klarna;
    /**
     * If this is a `konbini` PaymentMethod, this hash contains details about the Konbini payment method.
     */
    konbini?: PaymentMethodCreateParams.Konbini;
    /**
     * If this is a `kr_card` PaymentMethod, this hash contains details about the Korean Card payment method.
     */
    kr_card?: PaymentMethodCreateParams.KrCard;
    /**
     * If this is an `Link` PaymentMethod, this hash contains details about the Link payment method.
     */
    link?: PaymentMethodCreateParams.Link;
    /**
     * If this is a MB WAY PaymentMethod, this hash contains details about the MB WAY payment method.
     */
    mb_way?: PaymentMethodCreateParams.MbWay;
    /**
     * Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
     */
    metadata?: MetadataParam;
    /**
     * If this is a `mobilepay` PaymentMethod, this hash contains details about the MobilePay payment method.
     */
    mobilepay?: PaymentMethodCreateParams.Mobilepay;
    /**
     * If this is a `multibanco` PaymentMethod, this hash contains details about the Multibanco payment method.
     */
    multibanco?: PaymentMethodCreateParams.Multibanco;
    /**
     * If this is a `naver_pay` PaymentMethod, this hash contains details about the Naver Pay payment method.
     */
    naver_pay?: PaymentMethodCreateParams.NaverPay;
    /**
     * If this is an nz_bank_account PaymentMethod, this hash contains details about the nz_bank_account payment method.
     */
    nz_bank_account?: PaymentMethodCreateParams.NzBankAccount;
    /**
     * If this is an `oxxo` PaymentMethod, this hash contains details about the OXXO payment method.
     */
    oxxo?: PaymentMethodCreateParams.Oxxo;
    /**
     * If this is a `p24` PaymentMethod, this hash contains details about the P24 payment method.
     */
    p24?: PaymentMethodCreateParams.P24;
    /**
     * If this is a `pay_by_bank` PaymentMethod, this hash contains details about the PayByBank payment method.
     */
    pay_by_bank?: PaymentMethodCreateParams.PayByBank;
    /**
     * If this is a `payco` PaymentMethod, this hash contains details about the PAYCO payment method.
     */
    payco?: PaymentMethodCreateParams.Payco;
    /**
     * The PaymentMethod to share.
     */
    payment_method?: string;
    /**
     * If this is a `paynow` PaymentMethod, this hash contains details about the PayNow payment method.
     */
    paynow?: PaymentMethodCreateParams.Paynow;
    /**
     * If this is a `paypal` PaymentMethod, this hash contains details about the PayPal payment method.
     */
    paypal?: PaymentMethodCreateParams.Paypal;
    /**
     * If this is a `payto` PaymentMethod, this hash contains details about the PayTo payment method.
     */
    payto?: PaymentMethodCreateParams.Payto;
    /**
     * If this is a `pix` PaymentMethod, this hash contains details about the Pix payment method.
     */
    pix?: PaymentMethodCreateParams.Pix;
    /**
     * If this is a `promptpay` PaymentMethod, this hash contains details about the PromptPay payment method.
     */
    promptpay?: PaymentMethodCreateParams.Promptpay;
    /**
     * Options to configure Radar. See [Radar Session](https://docs.stripe.com/radar/radar-session) for more information.
     */
    radar_options?: PaymentMethodCreateParams.RadarOptions;
    /**
     * If this is a `revolut_pay` PaymentMethod, this hash contains details about the Revolut Pay payment method.
     */
    revolut_pay?: PaymentMethodCreateParams.RevolutPay;
    /**
     * If this is a `samsung_pay` PaymentMethod, this hash contains details about the SamsungPay payment method.
     */
    samsung_pay?: PaymentMethodCreateParams.SamsungPay;
    /**
     * If this is a `satispay` PaymentMethod, this hash contains details about the Satispay payment method.
     */
    satispay?: PaymentMethodCreateParams.Satispay;
    /**
     * If this is a `sepa_debit` PaymentMethod, this hash contains details about the SEPA debit bank account.
     */
    sepa_debit?: PaymentMethodCreateParams.SepaDebit;
    /**
     * If this is a `sofort` PaymentMethod, this hash contains details about the SOFORT payment method.
     */
    sofort?: PaymentMethodCreateParams.Sofort;
    /**
     * If this is a `swish` PaymentMethod, this hash contains details about the Swish payment method.
     */
    swish?: PaymentMethodCreateParams.Swish;
    /**
     * If this is a TWINT PaymentMethod, this hash contains details about the TWINT payment method.
     */
    twint?: PaymentMethodCreateParams.Twint;
    /**
     * The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type.
     */
    type?: PaymentMethodCreateParams.Type;
    /**
     * If this is a `upi` PaymentMethod, this hash contains details about the UPI payment method.
     */
    upi?: PaymentMethodCreateParams.Upi;
    /**
     * If this is an `us_bank_account` PaymentMethod, this hash contains details about the US bank account payment method.
     */
    us_bank_account?: PaymentMethodCreateParams.UsBankAccount;
    /**
     * If this is an `wechat_pay` PaymentMethod, this hash contains details about the wechat_pay payment method.
     */
    wechat_pay?: PaymentMethodCreateParams.WechatPay;
    /**
     * If this is a `zip` PaymentMethod, this hash contains details about the Zip payment method.
     */
    zip?: PaymentMethodCreateParams.Zip;
}
export declare namespace PaymentMethodCreateParams {
    interface AcssDebit {
        /**
         * Customer's bank account number.
         */
        account_number: string;
        /**
         * Institution number of the customer's bank.
         */
        institution_number: string;
        /**
         * Transit number of the customer's bank.
         */
        transit_number: string;
    }
    interface Affirm {
    }
    interface AfterpayClearpay {
    }
    interface Alipay {
    }
    type AllowRedisplay = 'always' | 'limited' | 'unspecified';
    interface Alma {
    }
    interface AmazonPay {
    }
    interface AuBecsDebit {
        /**
         * The account number for the bank account.
         */
        account_number: string;
        /**
         * Bank-State-Branch number of the bank account.
         */
        bsb_number: string;
    }
    interface BacsDebit {
        /**
         * Account number of the bank account that the funds will be debited from.
         */
        account_number?: string;
        /**
         * Sort code of the bank account. (e.g., `10-20-30`)
         */
        sort_code?: string;
    }
    interface Bancontact {
    }
    interface Billie {
    }
    interface BillingDetails {
        /**
         * Billing address.
         */
        address?: Emptyable<AddressParam>;
        /**
         * Email address.
         */
        email?: Emptyable<string>;
        /**
         * Full name.
         */
        name?: Emptyable<string>;
        /**
         * Billing phone number (including extension).
         */
        phone?: Emptyable<string>;
        /**
         * Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers.
         */
        tax_id?: string;
    }
    interface Blik {
    }
    interface Boleto {
        /**
         * The tax ID of the customer (CPF for individual consumers or CNPJ for businesses consumers)
         */
        tax_id: string;
    }
    interface Card {
        /**
         * The card's CVC. It is highly recommended to always include this value.
         */
        cvc?: string;
        /**
         * Two-digit number representing the card's expiration month.
         */
        exp_month?: number;
        /**
         * Four-digit number representing the card's expiration year.
         */
        exp_year?: number;
        /**
         * Contains information about card networks used to process the payment.
         */
        networks?: Card.Networks;
        /**
         * The card number, as a string without any separators.
         */
        number?: string;
        /**
         * For backwards compatibility, you can alternatively provide a Stripe token (e.g., for Apple Pay, Amex Express Checkout, or legacy Checkout) into the card hash with format card: {token: "tok_visa"}.
         */
        token?: string;
    }
    interface Cashapp {
    }
    interface Crypto {
    }
    interface Custom {
        /**
         * ID of the Dashboard-only CustomPaymentMethodType. This field is used by Stripe products' internal code to support CPMs.
         */
        type: string;
    }
    interface CustomerBalance {
    }
    interface Eps {
        /**
         * The customer's bank.
         */
        bank?: Eps.Bank;
    }
    interface Fpx {
        /**
         * Account holder type for FPX transaction
         */
        account_holder_type?: Fpx.AccountHolderType;
        /**
         * The customer's bank.
         */
        bank: Fpx.Bank;
    }
    interface Giropay {
    }
    interface Grabpay {
    }
    interface Ideal {
        /**
         * The customer's bank. Only use this parameter for existing customers. Don't use it for new customers.
         */
        bank?: Ideal.Bank;
    }
    interface InteracPresent {
    }
    interface KakaoPay {
    }
    interface Klarna {
        /**
         * Customer's date of birth
         */
        dob?: Klarna.Dob;
    }
    interface Konbini {
    }
    interface KrCard {
    }
    interface Link {
    }
    interface MbWay {
    }
    interface Mobilepay {
    }
    interface Multibanco {
    }
    interface NaverPay {
        /**
         * Whether to use Naver Pay points or a card to fund this transaction. If not provided, this defaults to `card`.
         */
        funding?: NaverPay.Funding;
    }
    interface NzBankAccount {
        /**
         * The name on the bank account. Only required if the account holder name is different from the name of the authorized signatory collected in the PaymentMethod's billing details.
         */
        account_holder_name?: string;
        /**
         * The account number for the bank account.
         */
        account_number: string;
        /**
         * The numeric code for the bank account's bank.
         */
        bank_code: string;
        /**
         * The numeric code for the bank account's bank branch.
         */
        branch_code: string;
        reference?: string;
        /**
         * The suffix of the bank account number.
         */
        suffix: string;
    }
    interface Oxxo {
    }
    interface P24 {
        /**
         * The customer's bank.
         */
        bank?: P24.Bank;
    }
    interface PayByBank {
    }
    interface Payco {
    }
    interface Paynow {
    }
    interface Paypal {
    }
    interface Payto {
        /**
         * The account number for the bank account.
         */
        account_number?: string;
        /**
         * Bank-State-Branch number of the bank account.
         */
        bsb_number?: string;
        /**
         * The PayID alias for the bank account.
         */
        pay_id?: string;
    }
    interface Pix {
    }
    interface Promptpay {
    }
    interface RadarOptions {
        /**
         * A [Radar Session](https://docs.stripe.com/radar/radar-session) is a snapshot of the browser metadata and device details that help Radar make more accurate predictions on your payments.
         */
        session?: string;
    }
    interface RevolutPay {
    }
    interface SamsungPay {
    }
    interface Satispay {
    }
    interface SepaDebit {
        /**
         * IBAN of the bank account.
         */
        iban: string;
    }
    interface Sofort {
        /**
         * Two-letter ISO code representing the country the bank account is located in.
         */
        country: Sofort.Country;
    }
    interface Swish {
    }
    interface Twint {
    }
    type Type = 'acss_debit' | 'affirm' | 'afterpay_clearpay' | 'alipay' | 'alma' | 'amazon_pay' | 'au_becs_debit' | 'bacs_debit' | 'bancontact' | 'billie' | 'blik' | 'boleto' | 'card' | 'cashapp' | 'crypto' | 'custom' | 'customer_balance' | 'eps' | 'fpx' | 'giropay' | 'grabpay' | 'ideal' | 'kakao_pay' | 'klarna' | 'konbini' | 'kr_card' | 'link' | 'mb_way' | 'mobilepay' | 'multibanco' | 'naver_pay' | 'nz_bank_account' | 'oxxo' | 'p24' | 'pay_by_bank' | 'payco' | 'paynow' | 'paypal' | 'payto' | 'pix' | 'promptpay' | 'revolut_pay' | 'samsung_pay' | 'satispay' | 'sepa_debit' | 'sofort' | 'swish' | 'twint' | 'upi' | 'us_bank_account' | 'wechat_pay' | 'zip';
    interface Upi {
        /**
         * Configuration options for setting up an eMandate
         */
        mandate_options?: Upi.MandateOptions;
    }
    interface UsBankAccount {
        /**
         * Account holder type: individual or company.
         */
        account_holder_type?: UsBankAccount.AccountHolderType;
        /**
         * Account number of the bank account.
         */
        account_number?: string;
        /**
         * Account type: checkings or savings. Defaults to checking if omitted.
         */
        account_type?: UsBankAccount.AccountType;
        /**
         * The ID of a Financial Connections Account to use as a payment method.
         */
        financial_connections_account?: string;
        /**
         * Routing number of the bank account.
         */
        routing_number?: string;
    }
    interface WechatPay {
    }
    interface Zip {
    }
    namespace Card {
        interface Networks {
            /**
             * The customer's preferred card network for co-branded cards. Supports `cartes_bancaires`, `mastercard`, or `visa`. Selection of a network that does not apply to the card will be stored as `invalid_preference` on the card.
             */
            preferred?: Networks.Preferred;
        }
        namespace Networks {
            type Preferred = 'cartes_bancaires' | 'mastercard' | 'visa';
        }
    }
    namespace Eps {
        type Bank = 'arzte_und_apotheker_bank' | 'austrian_anadi_bank_ag' | 'bank_austria' | 'bankhaus_carl_spangler' | 'bankhaus_schelhammer_und_schattera_ag' | 'bawag_psk_ag' | 'bks_bank_ag' | 'brull_kallmus_bank_ag' | 'btv_vier_lander_bank' | 'capital_bank_grawe_gruppe_ag' | 'deutsche_bank_ag' | 'dolomitenbank' | 'easybank_ag' | 'erste_bank_und_sparkassen' | 'hypo_alpeadriabank_international_ag' | 'hypo_bank_burgenland_aktiengesellschaft' | 'hypo_noe_lb_fur_niederosterreich_u_wien' | 'hypo_oberosterreich_salzburg_steiermark' | 'hypo_tirol_bank_ag' | 'hypo_vorarlberg_bank_ag' | 'marchfelder_bank' | 'oberbank_ag' | 'raiffeisen_bankengruppe_osterreich' | 'schoellerbank_ag' | 'sparda_bank_wien' | 'volksbank_gruppe' | 'volkskreditbank_ag' | 'vr_bank_braunau';
    }
    namespace Fpx {
        type AccountHolderType = 'company' | 'individual';
        type Bank = 'affin_bank' | 'agrobank' | 'alliance_bank' | 'ambank' | 'bank_islam' | 'bank_muamalat' | 'bank_of_china' | 'bank_rakyat' | 'bsn' | 'cimb' | 'deutsche_bank' | 'hong_leong_bank' | 'hsbc' | 'kfh' | 'maybank2e' | 'maybank2u' | 'ocbc' | 'pb_enterprise' | 'public_bank' | 'rhb' | 'standard_chartered' | 'uob';
    }
    namespace Ideal {
        type Bank = 'abn_amro' | 'adyen' | 'asn_bank' | 'bunq' | 'buut' | 'finom' | 'handelsbanken' | 'ing' | 'knab' | 'mollie' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
    }
    namespace Klarna {
        interface Dob {
            /**
             * The day of birth, between 1 and 31.
             */
            day: number;
            /**
             * The month of birth, between 1 and 12.
             */
            month: number;
            /**
             * The four-digit year of birth.
             */
            year: number;
        }
    }
    namespace NaverPay {
        type Funding = 'card' | 'points';
    }
    namespace P24 {
        type Bank = 'alior_bank' | 'bank_millennium' | 'bank_nowy_bfg_sa' | 'bank_pekao_sa' | 'banki_spbdzielcze' | 'blik' | 'bnp_paribas' | 'boz' | 'citi_handlowy' | 'credit_agricole' | 'envelobank' | 'etransfer_pocztowy24' | 'getin_bank' | 'ideabank' | 'ing' | 'inteligo' | 'mbank_mtransfer' | 'nest_przelew' | 'noble_pay' | 'pbac_z_ipko' | 'plus_bank' | 'santander_przelew24' | 'tmobile_usbugi_bankowe' | 'toyota_bank' | 'velobank' | 'volkswagen_bank';
    }
    namespace Sofort {
        type Country = 'AT' | 'BE' | 'DE' | 'ES' | 'IT' | 'NL';
    }
    namespace Upi {
        interface MandateOptions {
            /**
             * Amount to be charged for future payments.
             */
            amount?: number;
            /**
             * One of `fixed` or `maximum`. If `fixed`, the `amount` param refers to the exact amount to be charged in future payments. If `maximum`, the amount charged can be up to the value passed for the `amount` param.
             */
            amount_type?: MandateOptions.AmountType;
            /**
             * A description of the mandate or subscription that is meant to be displayed to the customer.
             */
            description?: string;
            /**
             * End date of the mandate or subscription.
             */
            end_date?: number;
        }
        namespace MandateOptions {
            type AmountType = 'fixed' | 'maximum';
        }
    }
    namespace UsBankAccount {
        type AccountHolderType = 'company' | 'individual';
        type AccountType = 'checking' | 'savings';
    }
}
export interface PaymentMethodRetrieveParams {
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
}
export interface PaymentMethodUpdateParams {
    /**
     * This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow. The field defaults to `unspecified`.
     */
    allow_redisplay?: PaymentMethodUpdateParams.AllowRedisplay;
    /**
     * Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.
     */
    billing_details?: PaymentMethodUpdateParams.BillingDetails;
    /**
     * If this is a `card` PaymentMethod, this hash contains the user's card details.
     */
    card?: PaymentMethodUpdateParams.Card;
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
    /**
     * Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
     */
    metadata?: Emptyable<MetadataParam>;
    /**
     * If this is a `payto` PaymentMethod, this hash contains details about the PayTo payment method.
     */
    payto?: PaymentMethodUpdateParams.Payto;
    /**
     * If this is an `us_bank_account` PaymentMethod, this hash contains details about the US bank account payment method.
     */
    us_bank_account?: PaymentMethodUpdateParams.UsBankAccount;
}
export declare namespace PaymentMethodUpdateParams {
    type AllowRedisplay = 'always' | 'limited' | 'unspecified';
    interface BillingDetails {
        /**
         * Billing address.
         */
        address?: Emptyable<AddressParam>;
        /**
         * Email address.
         */
        email?: Emptyable<string>;
        /**
         * Full name.
         */
        name?: Emptyable<string>;
        /**
         * Billing phone number (including extension).
         */
        phone?: Emptyable<string>;
        /**
         * Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers.
         */
        tax_id?: string;
    }
    interface Card {
        /**
         * Two-digit number representing the card's expiration month.
         */
        exp_month?: number;
        /**
         * Four-digit number representing the card's expiration year.
         */
        exp_year?: number;
        /**
         * Contains information about card networks used to process the payment.
         */
        networks?: Card.Networks;
    }
    interface Payto {
        /**
         * The account number for the bank account.
         */
        account_number?: string;
        /**
         * Bank-State-Branch number of the bank account.
         */
        bsb_number?: string;
        /**
         * The PayID alias for the bank account.
         */
        pay_id?: string;
    }
    interface UsBankAccount {
        /**
         * Bank account holder type.
         */
        account_holder_type?: UsBankAccount.AccountHolderType;
        /**
         * Bank account type.
         */
        account_type?: UsBankAccount.AccountType;
    }
    namespace Card {
        interface Networks {
            /**
             * The customer's preferred card network for co-branded cards. Supports `cartes_bancaires`, `mastercard`, or `visa`. Selection of a network that does not apply to the card will be stored as `invalid_preference` on the card.
             */
            preferred?: Emptyable<Networks.Preferred>;
        }
        namespace Networks {
            type Preferred = 'cartes_bancaires' | 'mastercard' | 'visa';
        }
    }
    namespace UsBankAccount {
        type AccountHolderType = 'company' | 'individual';
        type AccountType = 'checking' | 'savings';
    }
}
export interface PaymentMethodListParams extends PaginationParams {
    /**
     * This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow.
     */
    allow_redisplay?: PaymentMethodListParams.AllowRedisplay;
    /**
     * The ID of the customer whose PaymentMethods will be retrieved.
     */
    customer?: string;
    /**
     * The ID of the Account whose PaymentMethods will be retrieved.
     */
    customer_account?: string;
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
    /**
     * Filters the list by the object `type` field. Unfiltered, the list returns all payment method types except `custom`. If your integration expects only one type of payment method in the response, specify that type value in the request to reduce your payload.
     */
    type?: PaymentMethodListParams.Type;
}
export declare namespace PaymentMethodListParams {
    type AllowRedisplay = 'always' | 'limited' | 'unspecified';
    type Type = 'acss_debit' | 'affirm' | 'afterpay_clearpay' | 'alipay' | 'alma' | 'amazon_pay' | 'au_becs_debit' | 'bacs_debit' | 'bancontact' | 'billie' | 'blik' | 'boleto' | 'card' | 'cashapp' | 'crypto' | 'custom' | 'customer_balance' | 'eps' | 'fpx' | 'giropay' | 'grabpay' | 'ideal' | 'kakao_pay' | 'klarna' | 'konbini' | 'kr_card' | 'link' | 'mb_way' | 'mobilepay' | 'multibanco' | 'naver_pay' | 'nz_bank_account' | 'oxxo' | 'p24' | 'pay_by_bank' | 'payco' | 'paynow' | 'paypal' | 'payto' | 'pix' | 'promptpay' | 'revolut_pay' | 'samsung_pay' | 'satispay' | 'sepa_debit' | 'sofort' | 'swish' | 'twint' | 'upi' | 'us_bank_account' | 'wechat_pay' | 'zip';
}
export interface PaymentMethodAttachParams {
    /**
     * The ID of the customer to which to attach the PaymentMethod.
     */
    customer?: string;
    /**
     * The ID of the Account representing the customer to which to attach the PaymentMethod.
     */
    customer_account?: string;
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
}
export interface PaymentMethodDetachParams {
    /**
     * Specifies which fields in the response should be expanded.
     */
    expand?: Array<string>;
}
