import { EventEmitter } from '@angular/core';
import { AlertType } from './alert.types';
export declare class AlertComponent {
    type: AlertType;
    cssClass: string;
    closeable: boolean;
    content: HTMLElement | string;
    showIcon: boolean;
    closeEvent: EventEmitter<any>;
    dismissTime: any;
    hide: boolean;
    constructor();
    close(): void;
}
