import { DynLogLevel } from './log-levels.constant'; import { DynLog } from './log.interface'; import * as i0 from "@angular/core"; /** * Service to be overriden, defaults to console driver. */ export declare class DynLogDriver { private level; startedAt: number; logFatal: (event: DynLog) => Error; logError: (event: DynLog) => void; logWarning: (event: DynLog) => void; logInfo: (event: DynLog) => void; constructor(level: DynLogLevel); log(event: DynLog, force?: boolean): any; setLevel(level: number): void; private getLogger; private format; private colorify; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }