import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core'; export declare class NgbModalWindow implements OnInit, AfterViewInit, OnDestroy { private _document; private _elRef; private _zone; private _closed$; private _elWithFocus; private _dialogEl; ariaLabelledBy: string; backdrop: boolean | string; centered: string; keyboard: boolean; scrollable: string; size: string; windowClass: string; dismissEvent: EventEmitter; constructor(_document: any, _elRef: ElementRef, _zone: NgZone); dismiss(reason: any): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; }