import { LogWriter, LogEntry } from '..'; export interface FancyConsoleWriterOptions { formatMessage: boolean; useColor: boolean; dateFormat: string; terminalEol: string; } export declare class FancyConsoleWriter implements LogWriter { private readonly options; private readonly chalk; private readonly colors; constructor(options?: FancyConsoleWriterOptions); write(entry: LogEntry): void; format(entry: LogEntry): string; } //# sourceMappingURL=fancyConsoleWriter.d.ts.map