import { CountryCode } from 'libphonenumber-js'; export interface Country { name: string; iso2: CountryCode; dialCode: string; priority: number; areaCodes?: string[] | undefined; } export declare const allCountries: Country[]; //# sourceMappingURL=allCountries.d.ts.map