/** * CLI 日志工具 * 美化终端输出 */ export declare const logger: { info(message: string): void; success(message: string): void; warning(message: string): void; error(message: string): void; debug(message: string): void; h1(title: string): void; h2(title: string): void; list(items: string[], bullet?: string): void; table(rows: string[][]): void; progress(current: number, total: number, width?: number): string; }; export default logger; //# sourceMappingURL=logger.d.ts.map