import { ElementRef, OnInit, OnDestroy } from '@angular/core'; import { InternalDialogRef } from './dialog-ref'; import { BllDialogConfig } from './config'; export declare class BllDialogComponent implements OnInit, OnDestroy { private document; dialogRef: InternalDialogRef; config: BllDialogConfig; private nodes; private size; styles: { width: string; height: string; minHeight: string; maxHeight: string; }; private backdrop; private dialogElement; private destroy$; constructor(document: any, { nativeElement: host }: ElementRef, dialogRef: InternalDialogRef, config: BllDialogConfig, nodes: Element[]); ngOnInit(): void; closeDialog(): void; ngOnDestroy(): void; }