import { Country } from "./country";
export type CountryData = {
    [countryCode: string]: Country;
};
