import React from 'react'; import type { StoryObj } from '@storybook/react-vite'; import App from './App'; declare function FullHeight(Story: React.ComponentType): JSX.Element; declare const meta: { title: string; component: typeof App; decorators: (typeof FullHeight)[]; parameters: { layout: string; }; args: { isWidget: false; idOrganization: string; valuesData: {}; customSubmit: (values: Record) => Promise; }; }; export default meta; type Story = StoryObj; /** Parsed form, as the widget receives it from the API. */ export declare const Parseado: Story; /** TITLE with an INTEGRATION entity depending on a TEXTINPUT step. */ export declare const IntegracionConStepDependencia: Story; /** Parsed form pre-filled with values. */ export declare const ParseadoConValores: Story; /** Raw builder form: EUREKA entities resolved locally via mapDraftEntities. */ export declare const PreParseado: Story; /** Final view (postview): what the user submitted, rendered read-only. */ export declare const Postview: Story;