import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StripeCustomers, StripeCustomersData, StripeCustomersPatch, StripeCustomersQuery, StripeCustomersService } from './customers.class'; export type { StripeCustomers, StripeCustomersData, StripeCustomersPatch, StripeCustomersQuery }; export type StripeCustomersClientService = Pick>, (typeof stripeCustomersMethods)[number]>; export declare const stripeCustomersPath = "stripe/customers"; export declare const stripeCustomersMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeCustomersClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [stripeCustomersPath]: StripeCustomersClientService; } }