import { DisableMode } from '../../common/common'; import { LabelsWithBulletsProps } from '../labelsWithBullets/LabelsWithBullets'; /** * Component & its Props */ export interface Props { bullettedLabels: LabelsWithBulletsProps; 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 LabeledLabelsWithBullets({ isDisabled, label, bullettedLabels, style, }: Props): import("react/jsx-runtime").JSX.Element | null;