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 { StrategiesBacktest, StrategiesBacktestData, StrategiesBacktestPatch, StrategiesBacktestQuery } from './backtest.schema'; export type { StrategiesBacktest, StrategiesBacktestData, StrategiesBacktestPatch, StrategiesBacktestQuery }; export interface StrategiesBacktestParams extends MongoDBAdapterParams { user?: any; } export declare class StrategiesBacktestService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;