declare abstract class Logger { private static readonly defaultTag; static log(message: string | any | any[], tag?: string): void; static error(message: string | any | any[], tag?: string): void; } export { Logger };