import type { CountryCode } from '../types/datasets/country-code'; export declare const isEuCountry: (country?: string) => country is CountryCode; export declare const isEeaCountry: (country?: string) => country is CountryCode; export declare const isLowRiskCountry: (country?: string) => country is CountryCode; export declare const isUK: (countryCode?: string) => boolean; export declare const isHkSgCountry: (country?: string) => country is CountryCode; /** * Non-comprehensive list of countries (only those supported today in HO) we prefix with "The" in English. * * @param country */ export declare const prefixCountryNameWithThe: (country: CountryCode) => boolean;