import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core'; import { BasicUxElementComponent, BasicUxElementComponentChanges } from "../../basic-ux-element.component"; import { ModalComponent } from "../modal/modal.component"; import { NgInailCommonConfig } from "../../../../ng-inail-common.config"; import * as i0 from "@angular/core"; export interface AlertComponentChanges extends BasicUxElementComponentChanges { } export declare class AlertComponent extends BasicUxElementComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy { private _cdr; private libConfig; title: string; closeButtonTitle: string; close: EventEmitter; show: EventEmitter; width: 'S' | 'M' | 'L'; setFocusOnError: boolean; preventPageScroll: boolean; message: string; modalComponent: ModalComponent; okOnClick: () => void; constructor(_cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: AlertComponentChanges): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }