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 { ExchangesTicker, ExchangesTickerData, ExchangesTickerPatch, ExchangesTickerQuery } from './ticker.schema'; export type { ExchangesTicker, ExchangesTickerData, ExchangesTickerPatch, ExchangesTickerQuery }; export interface ExchangesTickerParams extends MongoDBAdapterParams { user?: any; } export declare class ExchangesTickerService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;