import { FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps } from '@rjsf/utils'; /** The `HiddenWidget` is a widget for rendering a hidden input field. * It is typically used by setting type to "hidden". * * @param props - The `WidgetProps` for this component */ function HiddenWidget({ id, value, }: WidgetProps) { return ; } export default HiddenWidget;