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