/** * Converts markdown to sanitized HTML. * Pure function — the Marked instance is immutable after construction. * Always pipe through DOMPurify before injecting into the DOM. */ export declare function renderMarkdown(text: string): string;