import { ReactNode } from 'react'; import { SingleSelectWithoutClearableFieldProps } from '../../singleSelectWithoutClearable/SingleSelectWithoutClearableField'; import { DisableMode } from '../common/common'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; singleSelectWithoutClearableField: SingleSelectWithoutClearableFieldProps; /** Optional content rendered below the label + select row, inside the bordered container. */ extraInfo?: ReactNode; isDisabled?: DisableMode; opacity?: number; style?: React.CSSProperties; } export declare function LabeledSingleSelectWithoutClearableField({ extraInfo, isDisabled, label, singleSelectWithoutClearableField, style, opacity, }: Props): import("react/jsx-runtime").JSX.Element;