import { DateElement, FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString, WidgetProps, useAltDateWidgetProps, } from '@rjsf/utils'; /** The `AltDateWidget` is an alternative widget for rendering date properties. * @param props - The `WidgetProps` for this component */ function AltDateWidget( props: WidgetProps, ) { const { disabled = false, readonly = false, autofocus = false, options, id, name, registry, onBlur, onFocus } = props; const { translateString } = registry; const { elements, handleChange, handleClear, handleSetNow } = useAltDateWidgetProps(props); return ( ); } export default AltDateWidget;