export default class Debug { static log(...messages: any[]): void; static error(...messages: any[]): void; static enable(enable: boolean): void; static enableError(enable: boolean): void; static displayOverlay(enable: boolean): void; private static _enabled; private static _errorEnabled; private static _overlayElement?; }