import { AddressValueFieldProps } from '../addressValueField/AddressValueField'; import { DisableMode, LabelProps } from '../common/common'; /** * Component & its Props */ export interface Props { addressValueField: AddressValueFieldProps; label: LabelProps; additionalInfoLabel?: string; fullWidthSelect?: boolean; /** When false, row stays on input background on hover/focus (e.g. nested in a hoverable band). */ hasHoverBorder?: boolean; isDisabled?: DisableMode; isOptional?: boolean; showAdditionalInfoLabel?: boolean; style?: React.CSSProperties; } export declare function LabeledAddressValueField({ addressValueField, label, additionalInfoLabel, isDisabled, isOptional, showAdditionalInfoLabel, style, hasHoverBorder, fullWidthSelect, }: Readonly): import("react/jsx-runtime").JSX.Element;