import type { FormContextType, RJSFSchema, StrictRJSFSchema, WrapIfAdditionalTemplateProps } from '@rjsf/utils'; /** The `WrapIfAdditional` component is used by the `FieldTemplate` to rename, or remove properties that are * part of an `additionalProperties` part of a schema. * * @param props - The `WrapIfAdditionalProps` for this component */ export default function WrapIfAdditionalTemplate({ classNames, style, children, disabled, displayLabel, id, label, onRemoveProperty, onKeyRenameBlur, rawDescription, readonly, required, schema, registry, }: WrapIfAdditionalTemplateProps): import("react/jsx-runtime").JSX.Element;