import type { Application } from '../../../declarations'; import { StrategiesBacktestService } from './backtest.class'; import { strategiesBacktestPath } from './backtest.shared'; export * from './backtest.class'; export * from './backtest.schema'; export declare const strategiesBacktest: (app: Application) => void; export declare const hooks: any; declare module '../../../declarations' { interface ServiceTypes { [strategiesBacktestPath]: StrategiesBacktestService; } }