import { ReactElement } from 'react'; interface MarkdownProps { /** * Adds a css className to the rendered element. */ className?: string; /** * The markdown string to render. */ source: string; } declare const Markdown: (props: MarkdownProps) => ReactElement; export default Markdown;