import { EventEmitter } from '../../stencil-public-runtime'; import { NotificationColor } from '../utils/notification-color'; export declare class MessageBar { /** * Specifies the type of the alert. */ type: 'alarm' | 'critical' | 'warning' | 'success' | 'info' | 'neutral' | 'primary'; /** * If true, close button is disabled and alert cannot be dismissed by the user */ persistent: boolean; /** * An event emitted when the close button is clicked */ closedChange: EventEmitter; /** * An event emitted when the close animation is completed */ closeAnimationCompleted: EventEmitter; icon?: string; color?: NotificationColor; private static readonly duration; private static readonly messageTypeConfigs; private divElement?; componentWillRender(): void; private closeAlert; render(): any; }