import { PaymentIntentService } from 'feathers-stripe'; import type { Application } from '../../../../declarations'; import { stripeCustomersPaymentintentPath } from './paymentintent.shared'; export * from './paymentintent.class'; export declare const stripeCustomersPaymentintent: (app: Application) => void; declare module '../../../../declarations' { interface ServiceTypes { [stripeCustomersPaymentintentPath]: PaymentIntentService; } }