import type { CountryCallingCode, CountryCode } from "libphonenumber-js"; export type Country = { code: CountryCode; name: string; emoji: string; callingCode: CountryCallingCode; };