export declare const DEFAULT_WIDTH = 80; export declare const INDENT_SIZE = 2; export declare const BOX_CHARS: { readonly topLeft: "┌"; readonly topRight: "┐"; readonly bottomLeft: "└"; readonly bottomRight: "┘"; readonly horizontal: "─"; readonly vertical: "│"; }; export declare const ANSI: { readonly CLEAR_LINE: "\r\u001B[K"; readonly HIDE_CURSOR: "\u001B[?25l"; readonly SHOW_CURSOR: "\u001B[?25h"; readonly RESET: "\u001B[0m"; };