import { SubscriptionAddOn } from '@zeniai/client-epic-state'; import { DisableMode } from '../../common/common'; /** * Component & its Props */ export interface Props { addOns: SubscriptionAddOn[]; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; isDisabled?: DisableMode; style?: React.CSSProperties; } export declare function LabeledItemWithMultiTextAndSubtext({ label, isDisabled, addOns, style, }: Props): import("react/jsx-runtime").JSX.Element;