export interface BootstrapAlertInterface {
    message: string;
    timeoutInMiliSeconds: number;
    type: AlertType;
    uuid: string;
    state: string;
}
export declare type AlertType = 'alert-danger' | 'alert-success' | 'alert-info' | 'alert-warning';
export declare class BootstrapAlert implements BootstrapAlertInterface {
    private _message;
    private _timeoutInMiliSeconds;
    private _type;
    private _uuid;
    private _state;
    constructor(message: string, type: AlertType);
    message: string;
    timeoutInMiliSeconds: number;
    type: AlertType;
    readonly uuid: string;
    state: string;
}
