import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { StripeCustomersPaymentmethods, StripeCustomersPaymentmethodsData, StripeCustomersPaymentmethodsPatch, StripeCustomersPaymentmethodsQuery, StripeCustomersPaymentmethodsService } from './paymentmethods.class'; export type { StripeCustomersPaymentmethods, StripeCustomersPaymentmethodsData, StripeCustomersPaymentmethodsPatch, StripeCustomersPaymentmethodsQuery }; export type StripeCustomersPaymentmethodsClientService = Pick>, (typeof stripeCustomersPaymentmethodsMethods)[number]>; export declare const stripeCustomersPaymentmethodsPath = "stripe/customers/paymentmethods"; export declare const stripeCustomersPaymentmethodsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeCustomersPaymentmethodsClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [stripeCustomersPaymentmethodsPath]: StripeCustomersPaymentmethodsClientService; } }