import { colors } from './colors'; declare const chars: { info: string; success: string; warning: string; error: string; }; interface ILogConstructorOptions { logLevel?: number; } export declare class Log { options: ILogConstructorOptions; constructor(); setOptions(options: ILogConstructorOptions): void; get logLevel(): number; /** * Log anything using `console.log` */ log(...args: any[]): void; /** * Verbose logs */ verbose(...args: any[]): void; /** * Info logs */ info(...args: any[]): void; /** * Warning logs */ warn(...args: any[]): void; /** * Error logs */ error(...args: any[]): void; /** * Success logs */ success(...args: any[]): void; } declare const log: Log; export { log, colors, chars, };