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