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;
