/**
* Date: 3/5/2018
* Time: 9:10 PM
* @license MIT (see project's LICENSE file)
*/
export declare enum Severity {
DEBUG = "debug",
INFO = "info",
WARN = "warn",
ERROR = "error",
FATAL = "fatal"
}
/**
* Is the severity param greater than or equal to the threshold param
*/
export declare function testSeverity(value: Severity, threshold: Severity): boolean;
//# sourceMappingURL=severity.d.ts.map