import { StoryObj } from '@storybook/html'; import { ErdEditorProps } from './ErdEditor'; declare const meta: { title: string; render: (args: ErdEditorProps) => DocumentFragment; argTypes: { readonly: { type: "boolean"; }; }; parameters: { css: string; }; }; export default meta; type Story = StoryObj; export declare const Normal: Story;