export interface CountryZones {
    name: string;
    zones: string[];
}
export declare const countryZones: {
    [iso: string]: CountryZones;
};
