import { ComponentFactoryResolver, ViewContainerRef, ElementRef, OnInit, Type, NgZone } from '@angular/core'; import { GoldenLayoutService, IComponentInitCallbackFactory, IComponentInitCallback } from './golden-layout.service'; export declare class GoldenLayoutComponent implements OnInit, IComponentInitCallbackFactory { private glService; private el; private viewContainer; private componentFactoryResolver; private ngZone; private goldenLayout; constructor(glService: GoldenLayoutService, el: ElementRef, viewContainer: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, ngZone: NgZone); ngOnInit(): void; onResize(event: any): void; createComponentInitCallback(componentType: Type): IComponentInitCallback; }