import { LogLevel } from '@arashi/interfaces'; import { ILogFormatter } from './ILogFormatter'; import { ILogObject } from './ILogObject'; export declare class DefaultConsoleFormat implements ILogFormatter { renderTime(ts: number): string; renderLevel(level: LogLevel): string; renderService(service: string): string; renderComponent(component: string): string; renderMessage(message: string): string; format(lo: ILogObject): string; }