import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; type StripeCustomersPaymentintent = any; type StripeCustomersPaymentintentData = any; type StripeCustomersPaymentintentPatch = any; type StripeCustomersPaymentintentQuery = any; export type { StripeCustomersPaymentintent, StripeCustomersPaymentintentData, StripeCustomersPaymentintentPatch, StripeCustomersPaymentintentQuery }; export interface StripeCustomersPaymentintentServiceOptions { app: Application; } export interface StripeCustomersPaymentintentParams extends Params { } export declare class StripeCustomersPaymentintentService implements ServiceInterface { options: StripeCustomersPaymentintentServiceOptions; constructor(options: StripeCustomersPaymentintentServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeCustomersPaymentintentData, params?: ServiceParams): Promise; create(data: StripeCustomersPaymentintentData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeCustomersPaymentintentData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeCustomersPaymentintentPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };