import type { FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps } from '@rjsf/utils'; /** The `AutoCompleteWidget` is a widget for rendering a field with options. * This is used instead of the base input template if the schema has examples. * * @param props - The `WidgetProps` for this component */ export default function AutoCompleteWidget(props: WidgetProps): import("react/jsx-runtime").JSX.Element;