/** * Display utilities for CLI output formatting. * * Uses yanse for terminal colors and provides common display patterns * for CLI commands: tables, key-value pairs, success/error messages. */ /** * Print a success message to stdout. */ export declare function printSuccess(message: string): void; /** * Print an error message to stderr. */ export declare function printError(message: string): void; /** * Print a warning message to stderr. */ export declare function printWarning(message: string): void; /** * Print an informational message to stdout. */ export declare function printInfo(message: string): void; /** * Print a key-value pair with aligned formatting. */ export declare function printKeyValue(key: string, value: string, indent?: number): void; /** * Print a list of key-value pairs as a formatted block. */ export declare function printDetails(entries: Array<{ key: string; value: string; }>, indent?: number): void; /** * Print a simple table from rows of data. * First row is treated as headers. */ export declare function printTable(headers: string[], rows: string[][], indent?: number): void;