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 { Exchanges, ExchangesData, ExchangesPatch, ExchangesQuery } from './exchanges.schema'; export type { Exchanges, ExchangesData, ExchangesPatch, ExchangesQuery }; export interface ExchangesParams extends MongoDBAdapterParams { user?: any; } export declare class ExchangesService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;