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 { ExchangesOhlcvHistory, ExchangesOhlcvHistoryData, ExchangesOhlcvHistoryPatch, ExchangesOhlcvHistoryQuery } from './history.schema'; export type { ExchangesOhlcvHistory, ExchangesOhlcvHistoryData, ExchangesOhlcvHistoryPatch, ExchangesOhlcvHistoryQuery }; export interface ExchangesOhlcvHistoryParams extends MongoDBAdapterParams { } export declare class ExchangesOhlcvHistoryService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;