export declare enum AlertType {
    INFO = 1,
    ERROR = 2,
    WARN = 3,
    SUCCESS = 4
}
export type AlertTypeString = ('info' | 'error' | 'warn' | 'success');
