import * as React from "react"; import type { defs } from "../FormHost"; import type { MarkdownProps as BaseMarkdownProps } from "@vertigis/react-ui/Markdown"; /** * Properties for the `Markdown` component. */ interface MarkdownProps extends Omit { /** The text to be rendered. */ text: defs.Text | undefined; } declare const Markdown: ({ text, escapeHtml, linkTarget, ...otherProps }: MarkdownProps) => React.JSX.Element | null; export default Markdown;