import { DisableMode, LabelProps } from '../common/common'; import { CountrySelectFieldProps } from '../countrySelectField/CountrySelectField'; /** * Component & its Props */ export interface Props { countrySelectField: CountrySelectFieldProps; label: LabelProps; additionalInfoLabel?: string; isDisabled?: DisableMode; showAdditionalInfoLabel?: boolean; style?: React.CSSProperties; } export declare function LabeledCountrySelectField({ label, countrySelectField, isDisabled, additionalInfoLabel, showAdditionalInfoLabel, style, }: Props): import("react/jsx-runtime").JSX.Element;