import { JsonFormsCore, JsonSchema, UISchemaElement } from '@jsonforms/core'; import { PropsWithChildren } from 'react'; /** * Render a full JsonForms tree against the project's mantine renderers/cells. * Use to exercise renderers via dispatch (Group/Array/Categorization, complex * controls, etc.). */ export declare const buildJsonForms: (params: { schema: JsonSchema; uischema?: UISchemaElement; data?: any; onChange?: (state: Pick) => void; }) => import("react/jsx-runtime").JSX.Element; export declare const jsonFormsWrap: (params: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;