declare enum Env { Development = "development", Production = "production", Test = "test" } /** * * A simple console logger with colorized output. */ type Level = 'debug' | 'error' | 'info' | 'log' | 'warn' | 'test'; export declare class Logger implements Partial { static env: Env; static testing: boolean; static isDevelopment: boolean; static isProduction: boolean; static level: Level; static debug(message?: unknown, ...args: unknown[]): void; static error(message?: unknown, ...args: unknown[]): void; static info(message?: unknown, ...args: unknown[]): void; static warn(message?: unknown, ...args: unknown[]): void; static security(message?: unknown, ...args: unknown[]): void; static log(message?: unknown, ...args: unknown[]): void; } export {}; //# sourceMappingURL=logger.d.ts.map