export type Countries = Record; export type CountryCodes = Array; export type CustomLabels = Record; export type CustomLabel = { primary: string; secondary?: string; }; export type OnSelect = (countryCode: string) => void;