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