import type { TypographyProps } from "@mui/material"; import React from "react"; export interface SimpleMarkdownPreviewOptions { h1Variant?: TypographyProps["variant"]; h2Variant?: TypographyProps["variant"]; paragraphVariant?: TypographyProps["variant"]; bulletVariant?: TypographyProps["variant"]; headingMarginTop?: number; spacerHeight?: number; bulletGap?: number; bulletPaddingLeft?: number; } export declare const renderSimpleMarkdownPreview: (markdown: string, options?: SimpleMarkdownPreviewOptions) => React.ReactNode;