import { KeyboardEventHandler } from 'react'; import { DisableMode } from '../common/common'; import { SingleSelectPickerFieldValue } from '../singleSelectPickerField/SingleSelectPickerField'; export interface LabeledTextWithSingleSelectFieldProps { label: string; labelWidth: number; selectDefaultValue: SingleSelectPickerFieldValue; selectName: string; textName: string; additionalInfoLabel?: string; isDisabled?: DisableMode; isOptional?: boolean; onTextKeyDown?: KeyboardEventHandler; /** Overrides the row's responsive width, as on the other `Labeled*` fields. */ style?: React.CSSProperties; textPlaceholder?: string; } export declare function LabeledTextWithSingleSelectField({ additionalInfoLabel, isDisabled, isOptional, label, labelWidth, onTextKeyDown, selectDefaultValue, selectName, style, textName, textPlaceholder, }: Readonly): import("react/jsx-runtime").JSX.Element;