import React from "react"; export interface UnifiedMarkdownProps { content: string; className?: string; isStreaming?: boolean; } /** * UNIFIED MARKDOWN RENDERER * * Single source of truth for all markdown rendering across the application. * Optimized for Kortix brand with Vercel-level UX/UI polish. * * Design principles: * - Clean, minimal aesthetic * - Consistent spacing rhythm * - Excellent readability in light & dark modes * - Brand-aligned colors and border radius */ export declare const UnifiedMarkdown: React.NamedExoticComponent;