import { EventEmitter } from '../../../stencil-public-runtime'; export declare class Alert { alertId: string; header: string; closeText: string; note: boolean; dismissible: boolean; icon: string; hideIcon: boolean; display: boolean; color: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'light' | 'dark'; shown: EventEmitter; hidden: EventEmitter; show(): Promise; hide(): Promise; private getAriaLiveSetting; render(): any; }