import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ExchangesDownloadWebhooks, ExchangesDownloadWebhooksData, ExchangesDownloadWebhooksPatch, ExchangesDownloadWebhooksQuery, ExchangesDownloadWebhooksService } from './webhooks.class'; export type { ExchangesDownloadWebhooks, ExchangesDownloadWebhooksData, ExchangesDownloadWebhooksPatch, ExchangesDownloadWebhooksQuery }; export type ExchangesDownloadWebhooksClientService = Pick>, (typeof exchangesDownloadWebhooksMethods)[number]>; export declare const exchangesDownloadWebhooksPath = "exchanges/download/webhooks"; export declare const exchangesDownloadWebhooksMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const exchangesDownloadWebhooksClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [exchangesDownloadWebhooksPath]: ExchangesDownloadWebhooksClientService; } }