import type { Application } from '../../../../declarations'; import { StrategiesBacktestPreflightService } from './preflight.class'; import { strategiesBacktestPreflightPath } from './preflight.shared'; export * from './preflight.class'; export * from './preflight.schema'; export declare const strategiesBacktestPreflight: (app: Application) => void; declare module '../../../../declarations' { interface ServiceTypes { [strategiesBacktestPreflightPath]: StrategiesBacktestPreflightService; } }