import { ILogEntry } from './ILogEntry'; export declare class LogEvent { private level; private _message; prefix: string; private args; private time; constructor(opts: ILogEntry); message(): string; fullOut(): string; }