import { type CodeBlockAppearance } from "./code-block.js"; import { renderInlineMarkdown } from "./markdown/tables.js"; export { renderInlineMarkdown }; export type MarkdownAppearance = CodeBlockAppearance; export declare function indentAndWrapText(text: string, indent?: string): string; export declare function renderMarkdown(text: string, width?: number, appearance?: MarkdownAppearance): string; export declare function createMarkdownStreamWriter(write: (chunk: string) => void, appearance?: MarkdownAppearance): { push(token: string): void; finish(): void; }; export declare function visibleWidth(str: string): number; export declare function wrapAnsiLine(line: string, maxWidth: number): string[];