export declare class Logger { private tag; static isLoggingEnabled(): boolean; static logd(tag: string, message: string): void; constructor(tag: string); logd(message: string): void; logAnything(message: any): void; logError(error: any): void; }