import { FormContextType, RJSFSchema, StrictRJSFSchema, UiSchema } from './types.js'; /** Checks to see if the `uiSchema` contains the `widget` field and that the widget is not `hidden` * * @param uiSchema - The UI Schema from which to detect if it is customized * @returns - True if the `uiSchema` describes a custom widget, false otherwise */ export default function isCustomWidget(uiSchema?: UiSchema): boolean;