/** @jsx jsx */ import { FC } from 'react'; import { MarkdownOptions } from 'markdown-to-jsx'; export interface MarkdownProps { /** * the markdown source code is passed as a children pro. */ children: string; /** * components to customize the markdown display. */ components?: MarkdownOptions['overrides']; } /** * Markdown display component to compile and display markdown at run-time. * Uses [markdown-to-jsx](https://github.com/probablyup/markdown-to-jsx) internally. */ export declare const Markdown: FC;