/// import { EventEmitter } from 'events'; export declare const events: EventEmitter; export declare const log: (msg?: string, tag?: string | null) => void; export declare const info: (msg: string, tag?: string | null) => void; export declare const done: (msg: string, tag?: string | null) => void; export declare const warn: (msg: string, tag?: string | null) => void; export declare const error: (msg: string | Error, tag?: string | null) => void; export declare const clearConsole: (title: string) => void;