import { ContentTheme } from './content-theme'; import { ContentContainer } from './content-container'; import { SimpleChanges, OnChanges } from '@angular/core'; export declare abstract class ContentComponent extends ContentContainer implements OnChanges { private syncContentComponentId(); constructor(); ngOnChanges(changes: SimpleChanges): void; readonly class: any; readonly componentName: string; readonly componentId: string; readonly abstract name: string; readonly abstract description: string; readonly abstract theme: ContentTheme; }