import { type DiagramColors } from 'beautiful-mermaid'; import type { ThemeNames } from 'comark/plugins/mermaid'; export interface MermaidProps { content: string; className?: string; height?: string; width?: string; theme?: ThemeNames | DiagramColors; themeDark?: ThemeNames | DiagramColors; } export declare function Mermaid({ content, className, height, width, theme, themeDark }: MermaidProps): import("react").JSX.Element;