/**
* Enumeration contains identificators which determinate the level of logs detalization.
* @enum {string}
*/
export declare enum eLogLevel {
    /**
    * Fatal error
    */
    FATAL_ERROR = "FatalError",
    /**
    * Error
    */
    ERROR = "Error",
    /**
    * Warning
    */
    WARNING = "Warning",
    /**
    * Info
    */
    INFO = "Info",
    /**
    * Debug
    */
    DEBUG = "Debug"
}
