import type { ELoggerLogLevel } from '../../domain/enum/index';
/**
 * The options for the console logger.
 * @see {@link https://elsikora.com/docs/cladi/services/logging}
 */
export interface IConsoleLoggerOptions {
    /**
     * The log level to use.
     * @default ELoggerLogLevel.INFO
     */
    level: ELoggerLogLevel;
    /**
     * The source to use for the logger.
     */
    source?: string;
}
//# sourceMappingURL=console-logger-options.interface.d.ts.map