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 { ExchangesDownload, ExchangesDownloadData, ExchangesDownloadPatch, ExchangesDownloadQuery } from './download.schema'; export type { ExchangesDownload, ExchangesDownloadData, ExchangesDownloadPatch, ExchangesDownloadQuery }; export interface ExchangesDownloadParams extends MongoDBAdapterParams { user?: any; } export declare class ExchangesDownloadService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;