import { Country } from './country';
/** Countries phone codes */
export declare const COUNTRIES_PHONE_CODES: Record<Country, string>;
/**
 * Some countries have the same phone codes (for example USA and Canada has +1,
 * Australia and Cocos Keeling Islands has +61). This map sets the main countries
 * for given phone codes.
 */
export declare const MAIN_PHONE_CODES_COUNTRIES: Record<string, Country>;
