import { AlertType } from './alert-type';
export declare class Alert {
    alertType: AlertType;
    text: string;
    textStrong: string;
    autoDismissTime: number;
    dismissable: boolean;
    static create(alertType: AlertType, text: string, autoDismissTime?: number, dismissable?: boolean): Alert;
    constructor(alertType: AlertType, text: string, textStrong?: string, autoDismissTime?: number, dismissable?: boolean);
    isDismissable(): boolean;
    isAutoDismissing(): boolean;
}
