import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; type StripeWebhooks = any; type StripeWebhooksData = any; type StripeWebhooksPatch = any; type StripeWebhooksQuery = any; export type { StripeWebhooks, StripeWebhooksData, StripeWebhooksPatch, StripeWebhooksQuery }; export interface StripeWebhooksServiceOptions { app: Application; } export interface StripeWebhooksParams extends Params { } export declare class StripeWebhooksService implements ServiceInterface { options: StripeWebhooksServiceOptions; constructor(options: StripeWebhooksServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeWebhooksData, params?: ServiceParams): Promise; create(data: StripeWebhooksData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeWebhooksData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeWebhooksPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };