import React from "react";
import type { WidgetProps } from "@rjsf/utils";
/** The `SelectWidget` is a widget for rendering dropdowns.
 *  It is typically used with string properties constrained with enum options.
 *
 * @param props - The `WidgetProps` for this component
 */
export declare const SelectWidget: (props: WidgetProps) => React.JSX.Element;
