import React from 'react'; /** * Public (anonymous) fill-out page for the NEW question-form renderer. * * The legacy public page (`UdpFormsPublicForm/UdpPublicForm`) stays on the * legacy `UdpFormRenderer` — existing apps routing public fills through the * legacy page id keep the renderer they shipped with. This page is the new * counterpart. It has no dedicated route; it's registered as a udp page widget * (`UdpQuestionPublicForm` in UdpPagesLoaders) and must be reached through a * whitelisted public page to allow anonymous access. * * Public mode is single-shot: no draft load, no autosave, submit POSTs to * `/UdpFormSubmission/public?tenantId=...`. `tenantId` comes from the URL * (`?udpf_tenantId=`) since there is no authenticated session to resolve it. */ export declare const UdpQuestionPublicForm: ({ onSubmitted, ...props }: { [x: string]: any; onSubmitted: any; }) => React.JSX.Element; //# sourceMappingURL=UdpQuestionPublicForm.d.ts.map