import { details } from './html/details.js'; import { bold, code, italic } from './html/font-style.js'; import { link } from './html/link.js'; import { table } from './html/table.js'; export { HIERARCHY, NEW_LINE, SPACE, TAB, TERMINAL_WIDTH, } from './constants.js'; export declare const html: { bold: typeof bold; italic: typeof italic; code: typeof code; link: typeof link; details: typeof details; table: typeof table; };