import { DisableMode } from '../common/common'; import { CountryMultiSelectFieldProps } from '../countryMultiSelectField/CountryMultiSelectField'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; style?: React.CSSProperties; width?: number; }; multiSelectField: CountryMultiSelectFieldProps; additionalInfoLabel?: string | JSX.Element; additionalInfoStyle?: React.CSSProperties; controlWidth?: number; errorInfoLabel?: string; fullWidthSelect?: boolean; isDisabled?: DisableMode; showAdditionalInfo?: boolean; style?: React.CSSProperties; } export declare function LabeledCountryMultiSelectField({ additionalInfoLabel, additionalInfoStyle, controlWidth, errorInfoLabel, isDisabled, label, multiSelectField, showAdditionalInfo, style, fullWidthSelect, }: Props): import("react/jsx-runtime").JSX.Element;