import { StoryObj } from '@storybook/react-vite'; import { MantineThemeDecorator } from '../../docs/MantineThemeDecorator'; import { StringOptions } from './StringWidget'; import { UseEditorOptions } from '@sagold/react-json-editor'; type WidgetProps = StringOptions & { editorProps: UseEditorOptions; }; declare function WidgetForm({ editorProps, ...props }: WidgetProps): import("react").JSX.Element; declare const _default: { title: string; component: typeof WidgetForm; decorators: (typeof MantineThemeDecorator)[]; argTypes: { showHeader: { control: string; }; icon: { control: string; }; tag: { control: string; }; swapIconPosition: { control: string; }; clearable: { 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 Default: Story; export declare const LiveUpdate: Story; export declare const ColorWidget: Story; export declare const TextareaWidget: Story;