import { HoistProps } from '@xh/hoist/core'; import { Options } from 'react-markdown'; interface MarkdownProps extends HoistProps { /** Markdown formatted string to render. */ content: string; /** True (default) to render new lines with
tags. */ lineBreaks?: boolean; /** Escape hatch to provide additional options to the React Markdown implementation */ reactMarkdownOptions?: Partial; } /** * Render Markdown formatted strings as HTML (e.g. **foo** becomes foo). * * Note that the remark-gfm plugin is included by default to support GitHub Flavored Markdown, * a superset of the CommonMark specification. See https://github.github.com/gfm/ for details. */ export declare const Markdown: import("react").FC, markdown: import("@xh/hoist/core").ElementFactory; export {};