import type { Stripe, StripeConstructorOptions } from '@stripe/stripe-js'; import type { Ref } from 'vue'; type MaybeRef = T | Ref; type Optional = MaybeRef; export interface UseStripeOptions extends StripeConstructorOptions { /** * Override the runtime configured publishable key. */ publishableKey?: string; } /** * Use Stripe. */ export declare function useStripe(options?: Optional): Ref; export {};