import * as z from "zod/v3"; import { StripeConnectOptions, StripeConnectOptions$Outbound } from "./stripeconnectoptions.js"; export type StripeCardOptions = { /** * Stripe options to support Stripe Connect */ stripeConnect?: StripeConnectOptions | null | undefined; /** * A Stripe customer ID (`cus_xxx`) to associate with the PaymentIntent for network token transactions. When provided, Stripe Radar can access the customer's payment history, dispute rate, and account age to improve risk scoring for returning customers. */ customerId?: string | null | undefined; /** * Passes the `error_on_requires_action` option to the Stripe API. Set to true to fail the payment attempt if it transitions into requires_action. Use this parameter for simpler integrations that don't handle customer actions, such as saving cards without authentication. */ errorOnRequiresAction?: boolean | null | undefined; }; /** @internal */ export type StripeCardOptions$Outbound = { stripe_connect?: StripeConnectOptions$Outbound | null | undefined; customer_id?: string | null | undefined; error_on_requires_action?: boolean | null | undefined; }; /** @internal */ export declare const StripeCardOptions$outboundSchema: z.ZodType; export declare function stripeCardOptionsToJSON(stripeCardOptions: StripeCardOptions): string; //# sourceMappingURL=stripecardoptions.d.ts.map