/** * Sheu - Simplified terminal color utility for styling console output */ declare class Sheu { /** * Get current timestamp in HH:MM:SS format */ private getTimestamp; /** * Apply timestamp and bold formatting if requested */ private formatText; /** * Get ANSI color code for color name */ private getColorCode; /** * Red color */ red(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Blue color */ blue(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Green color */ green(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Yellow color */ yellow(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Cyan color */ cyan(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Magenta color */ magenta(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * White color */ white(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Black color */ black(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Gray color */ gray(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Orange color */ orange(content: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Bold text formatting */ bold(content: any, options?: { timestamp?: boolean | string; }): string; /** * Info label with cyan color [INFO] */ info(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Simple Log with no label */ print(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Error label with red color [ERROR] */ error(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Ready label with green color [READY] */ ready(message: string, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Done label with green color [DONE] */ done(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Warning label with yellow color [WARN] */ warn(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; /** * Debug label with magenta color [DEBUG] */ debug(message: any, options?: { timestamp?: boolean | string; bold?: boolean; }): string; } declare const sheu: Sheu; export default sheu;