/**
 * Box Drawing Component
 * Creates beautiful boxes for CLI output without dependencies
 */
import { BoxOptions } from "./types.js";
/**
 * Create a box around content
 */
export declare function createBox(content: string | string[], options?: BoxOptions): string;
/**
 * Create a divider line
 */
export declare function createDivider(width?: number, style?: 'single' | 'double' | 'heavy'): string;
//# sourceMappingURL=box.d.ts.map