export type LogLevelName = "EMERGENCY" | "ALERT" | "CRITICAL" | "ERROR" | "WARNING" | "NOTICE" | "INFO" | "DEBUG" | "TRACE" | "DEFAULT";
export interface Config {
    name: LogLevelName;
    value: number;
}
export declare const EMERGENCY: Config;
export declare const ALERT: Config;
export declare const CRITICAL: Config;
export declare const ERROR: Config;
export declare const WARNING: Config;
export declare const NOTICE: Config;
export declare const INFO: Config;
export declare const DEBUG: Config;
export declare const TRACE: Config;
export declare const DEFAULT: Config;
export declare const LogLevels: Config[];
export declare const getConfig: (name: LogLevelName) => Config;
