import { EventEmitter, OnInit } from '@angular/core';
import { IconType } from '../icon/icon-types';
export declare class Banner implements OnInit {
    statusIcon: IconType;
    hide: boolean;
    animationState: 'default' | 'closing';
    title: any;
    status: 'default' | 'info' | 'success' | 'attention' | 'alert';
    dismissable: boolean;
    actionLabel: string;
    action: EventEmitter<any>;
    dismiss: EventEmitter<any>;
    ngOnInit(): void;
    onAction(): void;
    onClose(event?: any): void;
    onFadeFinished(event: AnimationEvent): void;
}
