import { ReactElement } from 'react'; import { DisableMode } from '../common/common'; import { SingleSelectPickerFieldProps } from '../singleSelectPickerField/SingleSelectPickerField'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; labelIcon?: ReactElement; style?: React.CSSProperties; width?: number; }; singleSelectPickerField: SingleSelectPickerFieldProps; bottomComponent?: React.ReactNode; controlWidth?: number; errorInfoLabel?: string; fullWidthSelect?: boolean; infoLabelStyle?: React.CSSProperties; isDisabled?: DisableMode; selectRef?: React.RefObject; style?: React.CSSProperties; valueToAdditionalLabel?: (value: string) => string; } export declare function LabeledSingleSelectPickerField({ bottomComponent, controlWidth, errorInfoLabel, fullWidthSelect, infoLabelStyle, isDisabled, label, selectRef, singleSelectPickerField, style, valueToAdditionalLabel, }: Props): import("react/jsx-runtime").JSX.Element;