import { Injector, OnInit, TemplateRef } from '@angular/core'; import { BaseDialog } from '@wm/components/dialogs'; export declare class AlertDialogComponent extends BaseDialog implements OnInit { static initializeProps: void; dialogTemplate: TemplateRef; constructor(inj: Injector, dialogClass: string, modal: string | boolean, closable: string | boolean); protected getTemplateRef(): TemplateRef; /** * Click event handler for the ok button * invokes on-ok event callback * @param {Event} $event */ onOk($event: Event): void; ngOnInit(): void; }