import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { TradersPodsWebhooks, TradersPodsWebhooksData, TradersPodsWebhooksPatch, TradersPodsWebhooksQuery, TradersPodsWebhooksService } from './webhooks.class'; export type { TradersPodsWebhooks, TradersPodsWebhooksData, TradersPodsWebhooksPatch, TradersPodsWebhooksQuery }; export type TradersPodsWebhooksClientService = Pick>, (typeof tradersPodsWebhooksMethods)[number]>; export declare const tradersPodsWebhooksPath = "traders/pods/webhooks"; export declare const tradersPodsWebhooksMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const tradersPodsWebhooksClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [tradersPodsWebhooksPath]: TradersPodsWebhooksClientService; } }