import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { ComponentRef, OnInit, ViewContainerRef } from '@angular/core'; export declare abstract class AtxModalComponent implements OnInit { private _activeModal; protected title: any; protected options: any; protected container: ViewContainerRef; protected componentRef: ComponentRef<{}>; constructor(_activeModal: NgbActiveModal); ngOnInit(): void; protected acceptModal(): void; protected closeModal(): void; protected dismissModal(): void; }