type MermaidPlacement = "top-left" | "top-right" | "bottom-left" | "bottom-right"; type MermaidProps = { chart: string; className?: string; ariaLabel?: string; placement?: MermaidPlacement; actions?: boolean; }; declare const Mermaid: ({ chart, className, ariaLabel, placement, actions, }: MermaidProps) => import("react/jsx-runtime").JSX.Element; export { Mermaid }; export type { MermaidProps, MermaidPlacement }; //# sourceMappingURL=mermaid.d.ts.map