export default class Logger { private static config; static setConfig(config: { debug: boolean; }): void; static log(msg: string): void; static warn(msg: string): void; static error(msg: string): void; }