export default class Logger {
    static debug: boolean;
    /**
     * Writes the specified messages into the console log
     * @param {string} message Messages to write
     */
    static log(...message: string[]): void;
    /**
     * Notification about a connection created to the specified URL
     * @param {string} url URL that is being connected to
     */
    static connect(url: string): void;
}
