import * as React from 'react'; export interface IMarkdownPreProps extends React.HTMLAttributes { /** * If true, using a code block with language name `renderhtml` will render the contents as HTML. * This is to work around markdown-to-jsx's limited support for nested HTML elements. */ enableRenderHtmlBlock?: boolean; } export declare const MarkdownPre: React.FunctionComponent;