import { DisableMode } from '../../common/common'; import { AddressValueProps } from '../addressValue/AddressValue'; /** * Component & its Props */ export interface Props { addressValue: AddressValueProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; additionalInfoLabel?: string; isDisabled?: DisableMode; isOptional?: boolean; name?: string; style?: React.CSSProperties; } export declare function LabeledAddressValue({ isDisabled, label, additionalInfoLabel, addressValue, isOptional, style, name, }: Props): import("react/jsx-runtime").JSX.Element;