import { SingleSelectFieldProps } from '../../singleSelect/SingleSelectField'; 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; }; singleSelectField: SingleSelectFieldProps; isDisabled?: DisableMode; style?: React.CSSProperties; } export declare function LabeledSingleSelectField({ isDisabled, label, singleSelectField, style, }: Props): import("react/jsx-runtime").JSX.Element;