/** * Box drawing utilities for creating bordered content * Uses Unicode box-drawing characters */ export interface BoxOptions { title?: string; color?: (text: string) => string; padding?: number; width?: number; } /** * Create a bordered box around content */ export declare function createBox(content: string, options?: BoxOptions): string; /** * Create a simple horizontal divider */ export declare function createDivider(length?: number, char?: string, color?: (text: string) => string): string; /** * Wrap text to a specific width */ export declare function wrapText(text: string, width: number): string[]; //# sourceMappingURL=boxDrawing.d.ts.map