export declare type Name = 'fatal' | 'error' | 'warn' | 'info' | 'debug' | 'trace'; export declare type NumString = '1' | '2' | '3' | '4' | '5' | '6'; export declare type Num = 6 | 5 | 4 | 3 | 2 | 1; export declare const LEVELS: Record; export declare const LEVELS_BY_NUM: Record; /** * Parser for log level. The given value is treated case insensitive. */ export declare const parser: { info: { typeName: string; valid: string; }; run: (raw: string) => any; }; //# sourceMappingURL=level.d.ts.map