import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StripeWebhooks, StripeWebhooksData, StripeWebhooksPatch, StripeWebhooksQuery, StripeWebhooksService } from './webhooks.class'; export type { StripeWebhooks, StripeWebhooksData, StripeWebhooksPatch, StripeWebhooksQuery }; export type StripeWebhooksClientService = Pick>, (typeof stripeWebhooksMethods)[number]>; export declare const stripeWebhooksPath = "stripe/webhooks"; export declare const stripeWebhooksMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeWebhooksClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [stripeWebhooksPath]: StripeWebhooksClientService; } }