export type AnsiLine = string; export interface RenderMarkdownLinesOptions { readonly width: number; readonly stripOuterIndent?: boolean | undefined; } export declare function preprocessAssistantMarkdown(text: string): string; export declare function renderMarkdownLines(text: string, options: RenderMarkdownLinesOptions): AnsiLine[];