import { DisableMode, LabelProps } from '../../common/common'; import { ButtonProps } from '../itemWithButton/ItemWithButton'; /** * Component & its Props */ export interface Props { button: ButtonProps; label: LabelProps; controlWidth?: number; isDisabled?: DisableMode; isOptional?: boolean; /** Sets `data-testid` on the row; falls back to `button.name` when omitted. */ name?: string; style?: React.CSSProperties; } export declare function LabeledItemWithButton({ isDisabled, label, button, style, controlWidth, isOptional, name, }: Props): import("react/jsx-runtime").JSX.Element;