import { DisableMode } from '../common/common'; import { RadioFieldProps } from '../radioField/RadioField'; /** * Component & its Props */ export interface Props { label: { label: string | React.ReactNode; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; radioField: RadioFieldProps; changeLabelColorInDisableMode?: boolean; disableHoverBackground?: boolean; isContainerClickable?: boolean; isDisabled?: DisableMode; labelStyle?: React.CSSProperties; showOutline?: boolean; style?: React.CSSProperties; } export declare function LabeledRadioField({ isDisabled, label, radioField, style, labelStyle, showOutline, isContainerClickable, changeLabelColorInDisableMode, disableHoverBackground, }: Props): import("react/jsx-runtime").JSX.Element;