import { Country } from "../data/Country";
/**
 * Finds and returns a country based on it's code (alpha2, alpha3, dialCode)
 */
declare const getCountry: (searchQuery: string | number) => Country | undefined;
export default getCountry;
