import { LogLevel } from './logLevel'; export declare class Logger { constructor(logLevel?: LogLevel); get logLevel(): LogLevel; set logLevel(value: LogLevel); private _logLevel; trace: (message: string, ...args: any) => void; debug: (message: string, ...args: any) => void; info: (message: string, ...args: any) => void; success: (message: string, ...args: any) => void; warn: (message: string, ...args: any) => void; error: (message: string, ...args: any) => void; log: (message: string, ...args: any) => void; table: (data: string[][], options?: { chars?: {} | undefined; head?: string[] | undefined; } | undefined, disableStyling?: boolean | undefined) => void; private filterArgs; }