import type { Application } from '../../../../declarations'; import { StrategiesBacktestResultsService } from './results.class'; import { strategiesBacktestResultsPath } from './results.shared'; export * from './results.class'; export * from './results.schema'; export declare const strategiesBacktestResults: (app: Application) => void; declare module '../../../../declarations' { interface ServiceTypes { [strategiesBacktestResultsPath]: StrategiesBacktestResultsService; } }