export function setLevel(level: any): void; /** * The error method will always log to the console */ export function error(...args: any[]): void; /** * Log only when set to verbose (2) */ export function log(...args: any[]): void; export function info(...args: any[]): void; export function warn(...args: any[]): void;