import React from "react"; import type { StoryObj } from "@storybook/react"; import { IQuillEditorProps } from "./editor.component"; declare function WrappedQuillEditor(props: IQuillEditorProps): React.ReactElement; declare const meta: { title: string; component: typeof WrappedQuillEditor; tags: string[]; parameters: { layout: string; }; }; export default meta; type Story = StoryObj; export declare const Basic: Story;