import { OnInit, AfterViewInit, ComponentFactoryResolver } from '@angular/core'; import { AnimationEvent } from '@angular/animations'; import { PopupOnAction } from './entities'; export declare class PopupComponent implements OnInit, AfterViewInit { private componentFactoryResolver; private componentBodyTarget; popup: any; private onActionClicked; private _actionFlag; private popupWidth; constructor(componentFactoryResolver: ComponentFactoryResolver); ngOnInit(): void; ngAfterViewInit(): void; readonly position: string; readonly animation: any; onAnimationEnd(event: AnimationEvent): void; onClick(event: any): void; onResize(event: any): void; close(): void; doAction(action: PopupOnAction): void; }