import type { UserModel } from '@stacksjs/orm'; import type Stripe from 'stripe'; export declare const manageCharge: ManageCharge; export declare interface ManageCharge { createPayment: (user: UserModel, amount: number, options: Stripe.PaymentIntentCreateParams) => Promise> findPayment: (id: string) => Promise refund: (paymentIntentId: string, options?: Stripe.RefundCreateParams) => Promise> charge: (user: UserModel, amount: number, paymentMethod: string, options: Stripe.PaymentIntentCreateParams) => Promise> }