///
import type { Country } from '../../../types/index.js';
type CountriesDropdownProps = {
value?: Partial;
defaultCountry?: string;
onChangeCountry?: (country: Country) => void;
required?: boolean;
countries: Country[];
isLoading: boolean;
};
declare function CountriesDropdown({ defaultCountry, value: selectedCountry, onChangeCountry, required, countries, isLoading, }: Readonly): import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;