import { StoryObj } from '@storybook/react-vite'; import { MantineThemeDecorator } from '../../docs/MantineThemeDecorator'; import { UseEditorOptions, DefaultNodeOptions } from '@sagold/react-json-editor'; type WidgetProps = DefaultNodeOptions & { editorProps: UseEditorOptions; }; declare function WidgetForm({ editorProps, ...props }: WidgetProps): import("react").JSX.Element; declare const _default: { title: string; component: typeof WidgetForm; decorators: (typeof MantineThemeDecorator)[]; argTypes: { disabled: { control: string; }; showHeader: { control: string; }; title: { control: string; }; description: { control: string; }; }; args: { editorProps: { data: null; onChange: (v: any) => void; schema: { title: string; description: string; type: string; }; }; }; }; export default _default; type Story = StoryObj; export declare const Options: Story; export declare const Disabled: Story; export declare const SwitchWidget: Story;