import type { LoggerLevel } from '../definitions/types.js'; /** * Returns the ANSI color code for a logger level, the level can be `debug`, `error`, `info`, `verbose` or `warn`. * * [Aracna Reference](https://aracna.dariosechi.it/core/utils/logger) */ export declare function getLoggerAnsiColor(level: LoggerLevel): string;