import { AutoCompleteGroupedSingleSelectFieldProps } from '../autoCompleteGroupedSingleSelectField/AutoCompleteGroupedSingleSelectField'; import { DisableMode } from '../common/common'; /** * Component & its Props */ export interface Props { autoCompleteGroupedSingleSelectField: AutoCompleteGroupedSingleSelectFieldProps; 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; isDisabled?: DisableMode; style?: React.CSSProperties; disableCurrentOption?: (option: string) => boolean; valueToAdditionalLabel?: (value: string) => string; } export declare function LabeledAutoCompleteGroupedSingleSelectField({ isDisabled, label, autoCompleteGroupedSingleSelectField, style, controlWidth, additionalLabelInfo, valueToAdditionalLabel, disableCurrentOption, fullWidthSelect, }: Props): import("react/jsx-runtime").JSX.Element;