/** * Logging level configuration interface */ export interface LogLevelConfig { value: number; label: string; color: string; } /** * Available log levels with priorities and colors */ export declare const LogLevel: { readonly DEBUG: { readonly value: 0; readonly label: "DEBUG"; readonly color: "\u001B[36m"; }; readonly INFO: { readonly value: 1; readonly label: "INFO"; readonly color: "\u001B[32m"; }; readonly WARN: { readonly value: 2; readonly label: "WARN"; readonly color: "\u001B[33m"; }; readonly ERROR: { readonly value: 3; readonly label: "ERROR"; readonly color: "\u001B[31m"; }; readonly CRITICAL: { readonly value: 4; readonly label: "CRITICAL"; readonly color: "\u001B[35m"; }; readonly SYSTEM: { readonly value: 5; readonly label: "SYSTEM"; readonly color: "\u001B[37m"; }; readonly NONE: { readonly value: 6; readonly label: "NONE"; readonly color: "\u001B[0m"; }; }; //# sourceMappingURL=logging.config.d.ts.map