import { type ChalkInstance } from "chalk"; import { visibleWidth, wrapAnsiLine } from "../markdown.js"; export { visibleWidth, wrapAnsiLine }; export declare function renderInlineMarkdown(text: string, paint?: ChalkInstance): string; export declare const BR_RE_GLOBAL: RegExp; export declare function isTableRowLine(line: string): boolean; export declare function isTableSeparatorLine(line: string): boolean; export declare function renderTableBlock(rawLines: string[], availWidth: number, paint: ChalkInstance): string[];