import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; type StripeCustomersSubscriptions = any; type StripeCustomersSubscriptionsData = any; type StripeCustomersSubscriptionsPatch = any; type StripeCustomersSubscriptionsQuery = any; export type { StripeCustomersSubscriptions, StripeCustomersSubscriptionsData, StripeCustomersSubscriptionsPatch, StripeCustomersSubscriptionsQuery }; export interface StripeCustomersSubscriptionsServiceOptions { app: Application; } export interface StripeCustomersSubscriptionsParams extends Params { } export declare class StripeCustomersSubscriptionsService implements ServiceInterface { options: StripeCustomersSubscriptionsServiceOptions; constructor(options: StripeCustomersSubscriptionsServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeCustomersSubscriptionsData, params?: ServiceParams): Promise; create(data: StripeCustomersSubscriptionsData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeCustomersSubscriptionsData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeCustomersSubscriptionsPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };