import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../../../declarations'; import type { ExchangesDownloadWebhooks, ExchangesDownloadWebhooksData, ExchangesDownloadWebhooksPatch, ExchangesDownloadWebhooksQuery } from './webhooks.schema'; export type { ExchangesDownloadWebhooks, ExchangesDownloadWebhooksData, ExchangesDownloadWebhooksPatch, ExchangesDownloadWebhooksQuery }; export interface ExchangesDownloadWebhooksParams extends MongoDBAdapterParams { } export declare class ExchangesDownloadWebhooksService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;