import type { Application } from '../../../declarations'; import { StrategiesHistoryService } from './history.class'; import { strategiesHistoryPath } from './history.shared'; export * from './history.class'; export * from './history.schema'; export declare const strategiesHistory: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [strategiesHistoryPath]: StrategiesHistoryService; } }