import { JsonFormsWithCustomizerProps } from './types'; /** * Renders a customizable JsonForms, memoized. * * @param props - The component properties. * @param props.schema - The JSON schema defining the structure of the form. * @param props.uischema - The UI schema used to customize the form rendering. * @param props.data - The form data. * @param props.onChange - Callback function triggered on form data changes. * @param props.customizer - Object to customize the form inputs. * @param props.debounce - Whether to debounce input changes. Defaults to false. * @param props.translations - Optional translations for internationalization. * @param props.hideWarnings - Whether to hide missing translation warnings. Can be a boolean, a specific language code, an object mapping languages to booleans, or an array of language codes. * @param props.createTranslator - Function to create a translator function from translations. * @param props.rest - Additional properties to be passed to the JsonForms component. * * @returns A JsonForms component wrapped with a Mantine theme provider. */ export declare const JsonFormsWithCustomizer: import('react').NamedExoticComponent;