import type { MarkdownProps as BaseMarkdownProps } from "@vertigis/react-ui/Markdown"; import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `Markdown` component. */ export interface MarkdownProps extends Omit { /** * The markdown text to render. */ text: TranslatableText; } declare const Markdown: FC; export default Markdown;