import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; type StripeCustomersPaymentmethods = any; type StripeCustomersPaymentmethodsData = any; type StripeCustomersPaymentmethodsPatch = any; type StripeCustomersPaymentmethodsQuery = any; export type { StripeCustomersPaymentmethods, StripeCustomersPaymentmethodsData, StripeCustomersPaymentmethodsPatch, StripeCustomersPaymentmethodsQuery }; export interface StripeCustomersPaymentmethodsServiceOptions { app: Application; } export interface StripeCustomersPaymentmethodsParams extends Params { } export declare class StripeCustomersPaymentmethodsService implements ServiceInterface { options: StripeCustomersPaymentmethodsServiceOptions; constructor(options: StripeCustomersPaymentmethodsServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeCustomersPaymentmethodsData, params?: ServiceParams): Promise; create(data: StripeCustomersPaymentmethodsData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeCustomersPaymentmethodsData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeCustomersPaymentmethodsPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };