import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; type StripeCustomers = any; type StripeCustomersData = any; type StripeCustomersPatch = any; type StripeCustomersQuery = any; export type { StripeCustomers, StripeCustomersData, StripeCustomersPatch, StripeCustomersQuery }; export interface StripeCustomersServiceOptions { app: Application; } export interface StripeCustomersParams extends Params { } export declare class StripeCustomersService implements ServiceInterface { options: StripeCustomersServiceOptions; constructor(options: StripeCustomersServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeCustomersData, params?: ServiceParams): Promise; create(data: StripeCustomersData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeCustomersData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeCustomersPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };