import { Direction } from '../../types/global'; import { CountryCode } from '../Flag'; interface CountryListItemProps { countryCode: CountryCode; countryName: string; isSelected?: boolean; onClick?: (value: CountryCode) => void; dir?: Direction; } declare const CountryListItem: { ({ countryCode, countryName, onClick, isSelected, dir, }: CountryListItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default CountryListItem;