/// import Stripe from 'stripe'; import { env } from '../../utils/env'; export const stripe = new Stripe(env('NEXT_PRIVATE_STRIPE_API_KEY') ?? '', { apiVersion: '2022-11-15', typescript: true, }); export { Stripe };