export type CountryCode = string; export type Country = { label: string; countryCode: string; }; export type Countries = Record; export type OnSelect = (country: Country | null) => void;