export default class Log { useDebug: boolean; constructor(config?: { debug: boolean; }); debug(...ops: string[]): void; info(...ops: string[]): void; warn(...ops: string[]): void; error(...ops: string[]): void; }