export declare class Logger {
    static debug(...opts: any[]): void;
    /**
     * Formats text with color.
     * @param text The text to colorize.
     * @param color The color to apply.
     */
    static color(text: unknown, color: "r" | "g" | "b" | "y" | "m"): string;
    /**
     * Formats text as bold.
     * @param text The text to bold.
     */
    static bold(text: unknown): string;
}
