import type { ColorMode } from "../../app/ports/terminal-port.js"; import type { Theme } from "./theme.js"; export type AnsiLine = string; export interface RenderMarkdownLinesOptions { readonly width: number; readonly stripOuterIndent?: boolean | undefined; readonly theme?: Theme | undefined; readonly colorMode?: ColorMode | undefined; } export declare function preprocessAssistantMarkdown(text: string): string; export declare function renderMarkdownLines(text: string, options: RenderMarkdownLinesOptions): AnsiLine[];