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