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