import { AnyComponentSchema } from '@open-formulieren/types'; import { Decorator, Meta, StoryObj } from '@storybook/react-vite'; import { JSONObject } from '../types'; export declare const hideSpinner: Decorator; export interface ReferenceStoryArgs { components: AnyComponentSchema[]; submissionData?: JSONObject; onSubmit?: (values: JSONObject) => void; } export declare const render: (args: ReferenceStoryArgs) => import("react/jsx-runtime").JSX.Element; export type ReferenceMeta = Meta & { title: `Internal API / Reference behaviour / ${string}`; }; export type Story = StoryObj;