import * as i0 from '@angular/core'; type ChangeLog = ChangeLog.Release[]; declare namespace ChangeLog { interface Release { version?: string; date?: string; changes: Change[]; categories: Category[]; } interface Category { label: string; link?: string; } interface Change { category: string; description: string; type: 'New' | 'Bugfix' | 'Deprecated' | 'Update'; } } declare class UXGChangelogComponent { changelog: ChangeLog; title: string; subtitle: string; displayVersion: 'left' | 'top' | 'none'; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export { ChangeLog, UXGChangelogComponent };