import { default as React } from 'react'; import { default as ReactMarkdown } from 'react-markdown'; type ReactMarkdownProps = React.ComponentProps; /** * Thin wrapper around `react-markdown` that always enables GitHub Flavored * Markdown (tables, strikethrough, task lists, autolinks). * * `react-markdown` parses CommonMark only, which has no table support — so a * bare `` renders `| a | b |` / `|---|` blocks as literal * paragraph text. Routing every markdown render through this component keeps * GFM enabled everywhere and avoids repeating the `remarkPlugins` array at each * call site. Any caller-supplied `remarkPlugins` are appended after `remarkGfm`, * and caller-supplied `components` override the defaults (including `table`). */ declare const GfmMarkdown: React.FC; export default GfmMarkdown;