import type { Stripe, StripeElements } from "@stripe/stripe-js";

declare global {
  interface Window {
    Stripe?: Stripe;
  }
}

export type { Stripe, StripeElements };

export type PaymentIntentStatus =
  | "succeeded"
  | "processing"
  | "requires_action"
  | "requires_payment_method"
  | "canceled";

export {};
