import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { StripeCustomersPaymentintent, StripeCustomersPaymentintentData, StripeCustomersPaymentintentPatch, StripeCustomersPaymentintentQuery, StripeCustomersPaymentintentService } from './paymentintent.class'; export type { StripeCustomersPaymentintent, StripeCustomersPaymentintentData, StripeCustomersPaymentintentPatch, StripeCustomersPaymentintentQuery }; export type StripeCustomersPaymentintentClientService = Pick>, (typeof stripeCustomersPaymentintentMethods)[number]>; export declare const stripeCustomersPaymentintentPath = "stripe/customers/paymentintent"; export declare const stripeCustomersPaymentintentMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeCustomersPaymentintentClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [stripeCustomersPaymentintentPath]: StripeCustomersPaymentintentClientService; } }