/** * Simple markdown parser - converts basic markdown to HTML * Supports: bold, italic, links, code, lists */ export declare function parseMarkdown(text: string): string; /** * Sanitize HTML to prevent XSS attacks */ export declare function sanitizeHtml(html: string): string;