import { DisableMode } from '../formElements/common/common'; /** * Component & its Props */ export interface OptionType { label: string; value: string; hoverText?: string; } export interface Props { allValues: OptionType[]; constantSelectedValue?: string; isDisabled?: DisableMode; isOptionsSortable?: boolean; isSearchable?: boolean; isValuePlacedAtEnd?: boolean; name?: string; placeholder?: string; selectedValue?: OptionType; showOptionOnHover?: boolean; style?: React.CSSProperties; onSelectedValueChanged: (selectedValue?: OptionType) => void; } export declare const SingleSelectWithoutClearable: ({ allValues, selectedValue, onSelectedValueChanged, isDisabled, placeholder, style, name, isValuePlacedAtEnd, isSearchable, isOptionsSortable, constantSelectedValue, showOptionOnHover, }: Props) => import("react/jsx-runtime").JSX.Element;