import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StripeCharges, StripeChargesData, StripeChargesPatch, StripeChargesQuery, StripeChargesService } from './charges.class'; export type { StripeCharges, StripeChargesData, StripeChargesPatch, StripeChargesQuery }; export type StripeChargesClientService = Pick>, (typeof stripeChargesMethods)[number]>; export declare const stripeChargesPath = "stripe/charges"; export declare const stripeChargesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeChargesClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [stripeChargesPath]: StripeChargesClientService; } }