import { ComponentFactoryResolver } from '@angular/core'; import { MatDialog, MatDialogRef } from '@angular/material'; import { ContentComponent } from './content-component'; import { BrowseContentComponentsDialogComponent } from './browse-content-components-dialog/browse-content-components-dialog.component'; import { ContentContainer } from './content-container'; import { ConfigureContentContainerDialogComponent } from './configure-content-container-dialog/configure-content-container-dialog.component'; import { ContentConfig } from './content-config'; export declare class ContentService { private componentFactoryResolver; private dialog; private _contentComponents; constructor(componentFactoryResolver: ComponentFactoryResolver, dialog: MatDialog); loadContentComponents(): ContentComponent[]; readonly contentComponents: ContentComponent[]; getContentComponentById(id: string): ContentComponent; browseContentComponents(): MatDialogRef; configure(container: ContentContainer): MatDialogRef; }