export interface Country {
    name: string;
    flag: string;
    code: string;
    dialCode: string;
    length: number;
}
export declare const countries: Country[];
type CountryWithoutCode = Omit<Country, 'code'>;
interface CountriesMap {
    [code: string]: CountryWithoutCode;
}
export declare const countriesMap: CountriesMap;
export {};
//# sourceMappingURL=countries.d.ts.map