/** * Internal helper class that logs output both to console (when inspecting app or window) and runtime's debug.log file. */ export declare class Log { private static LOG_PREFIX; static error(message: string): Promise; static warn(message: string): Promise; static info(message: string): Promise; private static getPrefixedMessage; private static handleError; }