UNPKG

markdown-flow-ui

Version:

A React UI library for rendering markdown with interactive flow components, typewriter effects, and plugin support

26 lines (25 loc) 735 B
import { StoryObj } from '@storybook/nextjs-vite'; declare const meta: { title: string; component: import('react').FC<import('./ContentRender').ContentRenderProps>; parameters: { layout: string; }; tags: string[]; argTypes: { content: { control: "text"; description: string; }; }; args: { content: string; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const ComprehensiveMarkdownSyntax: Story; export declare const MarkdownSyntaxWithTypewriter: Story; export declare const MathAndMermaidDemo: Story; export declare const ContentRenderMathAndMermaid: Story; export declare const MermaidErrorHandlingTest: Story;