import React from 'react'; /** * React wrapper around the Stencil form renderer. Owns the post-submit * UX layer so the Stencil component stays a pure form engine: * * - Listens for the renderer's `submitted` event (fired only on * explicit Submit, not autosaves). * - If the consumer passed `onSubmitted`, calls it with the * submissionId and stays mounted as the form (consumer presumably * navigates away, opens a modal, etc.). * - Otherwise, swaps to a built-in "Thanks for submitting" panel in * place of the form. * * Resetting `submitted` state lives at the React layer — when the * Stencil component remounts (e.g. URL changes to a different submission), * useState resets naturally. */ export declare const UdpQuestionFormRenderer: (props: any) => React.JSX.Element; //# sourceMappingURL=UdpQuestionFormRenderer.d.ts.map