#!/usr/bin/env node export declare enum LEVEL { VERBOSE = 'VERBOSE', INFO = 'INFO', ERROR = 'ERROR', } export declare class Logger { private loggingLevel; constructor(loggingLevel?: LEVEL); log(level: LEVEL, message?: string, ...optionalParams: any[]): void; }