import type { StripeConnectInstance } from '@stripe/connect-js'; import type { Stripe, StripeElements } from '@stripe/stripe-js'; import type { Ref } from 'vue'; export interface StripeContext { stripe: Ref; } export interface StripeConnectContext { stripeConnect: Ref; } export interface StripeElementsContext { stripe: Ref; elements: Ref; }