/** * Box Rendering * * Styled box containers with fallback ASCII rendering * @module utils/ui/boxes */ import type { BoxOptions } from '../../types/utils'; /** * Render content in a styled box */ export declare function box(content: string, options?: BoxOptions): string; /** * Render error box (red border) */ export declare function errorBox(content: string, title?: string): string; /** * Render info box (primary color border) */ export declare function infoBox(content: string, title?: string): string; /** * Render warning box (yellow border) */ export declare function warnBox(content: string, title?: string): string; //# sourceMappingURL=boxes.d.ts.map