import { InputPhoneCountry } from './countries';
export type InputPhoneContinentType = 'EU' | 'AS' | 'NA' | 'SA' | 'OC' | 'AF';
type Continents = {
    [key in InputPhoneContinentType]: InputPhoneCountry[];
};
export declare const CONTINENTS: Continents;
export {};
