/** * @athenna/core * * (c) João Lenon * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ export declare class Logger { /** * Write a message to the stdout. */ static write(...args: any[]): void; /** * Write a message to the stdout in red color. */ static red(...args: any[]): void; /** * Write a message to the stdout in gray color. */ static gray(...args: any[]): void; /** * Write a message to the stdout in green color. */ static green(...args: any[]): void; /** * Write a message to the stdout in purple color. */ static purple(...args: any[]): void; /** * Write a message to the stdout in yellow color. */ static yellow(...args: any[]): void; }