/** * Shared utilities for text processing and formatting * Consolidates text wrapping and formatting logic */ export interface TextWrapOptions { maxWidth: number; indent?: string; cleanupPrefixes?: boolean; preserveWhitespace?: boolean; } export declare class TextUtils { /** * Wrap text to fit within specified width with optional indentation */ static wrapText(text: string, options: TextWrapOptions): string; /** * Wrap text with background color applied to each line (CLI-specific) */ static wrapTextWithBackground(text: string, maxWidth: number, indent: string, backgroundFormatter: (text: string) => string): string; } //# sourceMappingURL=text-utils.d.ts.map