export interface CountryInterface {
    countryCode: string;
    callingCode: string;
    mask: string;
}
export interface CountriesInterface {
    [index: string]: CountryInterface;
}
declare const countries: CountriesInterface;
export default countries;
//# sourceMappingURL=countries.d.ts.map