import { DisableMode } from '../common/common'; import { GroupedSingleSelectFieldProps } from '../groupedSingleSelectField/GroupedSingleSelectField'; /** * Component & its Props */ export interface Props { groupedSingleSelectField: GroupedSingleSelectFieldProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; additionalLabelInfo?: string; controlWidth?: number; fullWidthSelect?: boolean; hideLabel?: boolean; isDisabled?: DisableMode; style?: React.CSSProperties; disableCurrentOption?: (option: string) => boolean; valueToAdditionalLabel?: (value: string) => string; } export declare function LabeledGroupedSingleSelectField({ isDisabled, label, hideLabel, groupedSingleSelectField, style, controlWidth, additionalLabelInfo, valueToAdditionalLabel, disableCurrentOption, fullWidthSelect, }: Props): import("react/jsx-runtime").JSX.Element;