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