import { type ChalkInstance } from 'chalk'; /** * Get terminal width with a sensible fallback */ export declare function getTerminalWidth(): number; /** * Draw a box with box-drawing characters around content lines */ export declare function drawBox(lines: string[], options?: { color?: ChalkInstance; width?: number; }): string; /** * Draw a horizontal separator with an optional centered label */ export declare function drawSeparator(label?: string, width?: number): string; /** * Render a progress bar */ export declare function renderProgressBar(current: number, total: number, options?: { width?: number; label?: string; }): string; //# sourceMappingURL=box.d.ts.map