/**
 * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
 * @link https://truedirective.com/
 * @license MIT
*/
import { EventEmitter, ElementRef } from '@angular/core';
import { DialogInfo } from './dialog-info.class';
/**
 * Dialog alert component
 */
export declare class DialogAlertComponent {
    elementRef: ElementRef;
    text: string;
    close: EventEmitter<any>;
    alert: any;
    overlay: any;
    closeAlert(): void;
    btnClick(e: any, btn: any): void;
    overlayClick(e: any): void;
    dialog: DialogInfo;
    init(txt: string, dialog: DialogInfo): void;
    constructor(elementRef: ElementRef);
}
