/**
 * The various log level to control how much logging is done by the SDK.
 */
declare enum LogLevel {
    /**
     * Used when attempting to diagnose a specific problem. This is the log level used by the default logger.
     *
     * *Note*: Many browsers have [built in options](https://developer.chrome.com/docs/devtools/console/log/#level) to
     * control log visibility. Thus while debugging is enabled, it may be necessary to alter your browsers default
     * configuration settings.
     */
    DEBUG = 4,
    /**
     * Used for routine messages that happen during the course of ordinary operation.
     */
    INFO = 3,
    /**
     * Used for unexpected conditions where recovery may be possible.
     */
    WARN = 2,
    /**
     * Used for unexpected conditions where recovery is not possible.
     */
    ERROR = 1,
    /**
     * Used to completely disable logging, not recommended.
     */
    OFF = 0
}
export default LogLevel;
//# sourceMappingURL=LogLevel.d.ts.map