import type { StoryObj } from '@storybook/react'; import * as React from 'react'; import { Markdown } from '.'; declare const meta: { title: string; component: typeof Markdown; render: (args: import("react-markdown/lib").Options) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const Default: Story;