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