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;
