export type RawCountry = readonly [
    string,
    string[],
    string,
    string,
    string?,
    number?,
    string[]?
];
export declare const allCountryCodes: {};
export interface ICountry {
    name: string;
    regions: ReadonlyArray<string>;
    iso2: string;
    dialCode: string;
    priority: number;
    format?: string;
    hasAreaCodes?: ReadonlyArray<string>;
    isAreaCode?: boolean;
}
export declare const allCountries: ReadonlyArray<ICountry>;
