import { ReactNode } from 'react'; /** * Formats a string value as markdown content for DataTable cells. * * Supports inline constructs (bold, italic, bold+italic, inline code, highlight) * and block-level flat lists (unordered with `- `, ordered with `N. `). * * @param value - The markdown string to format * @returns Formatted React nodes, or null for empty/null/undefined values */ export declare const markdownFormatter: (value?: string | null) => ReactNode;