import { CountryCode } from 'libphonenumber-js'; /** * Simple mapping constant retrieved from * https://github.com/catamphetamine/react-phone-number-input/blob/master/locale/en.json. * * Duplicated here (with unsupported codes removed) instead of installing * another dependency. */ export declare const COUNTRY_CODE_TO_NAME: { [str in CountryCode]: string; }; type CountrySelectOption = { value: CountryCode; label: string; }; export declare const getCountrySelectOptions: () => CountrySelectOption[]; export {};