import { StoryObj } from '@storybook/react-vite'; import { MantineThemeDecorator } from '../../docs/MantineThemeDecorator'; import { MultiSelectOptions } from './MultiSelect'; import { UseEditorOptions } from '@sagold/react-json-editor'; type WidgetProps = MultiSelectOptions & { editorProps: UseEditorOptions; }; declare function WidgetForm({ editorProps, ...props }: WidgetProps): import("react").JSX.Element; declare const _default: { title: string; component: typeof WidgetForm; decorators: (typeof MantineThemeDecorator)[]; args: { editorProps: { data: never[]; onChange: (v: any) => void; schema: { type: string; uniqueItems: boolean; options: { enum: string[]; }; items: { type: string; enum: string[]; }; }; }; }; }; export default _default; type Story = StoryObj; export declare const Default: Story; export declare const Taglist: Story;