import { DisableMode } from '../../common/common'; import { LabelWithSubtitleProps } from '../labelWithSubtitle/LabelWithSubtitle'; /** * 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; }; labelWithSubtitle: LabelWithSubtitleProps; isDisabled?: DisableMode; style?: React.CSSProperties; } export declare function LabeledLabelWithSubtitle({ isDisabled, label, labelWithSubtitle, style, }: Props): import("react/jsx-runtime").JSX.Element;