declare enum LogType { warn = "warn", info = "info", error = "error", muted = "muted", success = "success" } export declare class Log { /** * @param {string} message * @returns {typeof Log} */ static basic(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static success(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static warn(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static info(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static muted(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static error(message: string): typeof Log; /** * @param {string} key * @returns {typeof Log} */ static time(key: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static timeEnd(message: string): typeof Log; /** * @param {string} message * @returns {typeof Log} */ static group(message: string): typeof Log; /** * @returns {typeof Log} */ static groupEnd(): typeof Log; /** * Sends a coloured console message * * @param {LogType} type success, error, warn * @param {string} message the message to be pushed * @return {typeof Log} */ static message(type: LogType, message: string): typeof Log; } export {};