import { DisableMode } from '../common/common'; import { CurrencyAmountFieldProps } from '../currencyAmountField/CurrencyAmountField'; /** * Component & its Props */ export interface Props { currencyAmountField: CurrencyAmountFieldProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; additionalInfoLabel?: string; additionalLabelTooltip?: string; errorInfoLabel?: string; isAdditionalInfoLabelLoading?: boolean; isDisabled?: DisableMode; showAdditionalInfoLabel?: boolean; showAdditionalLabelTooltip?: boolean; style?: React.CSSProperties; } export declare function LabeledCurrencyAmountField({ isDisabled, label, currencyAmountField, style, errorInfoLabel, isAdditionalInfoLabelLoading, showAdditionalLabelTooltip, additionalLabelTooltip, additionalInfoLabel, showAdditionalInfoLabel, }: Props): import("react/jsx-runtime").JSX.Element;