export declare const enum LogLevel {
    Debug = "debug",
    Info = "info",
    Notice = "notice",
    Warning = "warning",
    Error = "error",
    Critical = "critical"
}
export declare const LogLevelNumber: Record<LogLevel, number>;
