declare enum AnAlertTypes {
    INFO = 0,
    WARNING = 1,
    SUCCESS = 2,
    ERROR = 3,
    BLANK = 4,
}
export { AnAlertTypes };
