export declare enum LogLevels { /** Lowest debug level; This will not be logged unless explicitly enabled */ TRACE = 0, /** Debug messages for development environments */ DEBUG = 1, /** Info messages will be logged in production environments by default */ INFO = 2, /** Warning about a potential issue or an expected error occured */ WARN = 3, /** An unexpected error occurred */ ERROR = 4, /** Disable logging */ NONE = 99 } export declare const LogLevelNames: { [key in LogLevels]: string; }; //# sourceMappingURL=log.values.d.ts.map