export declare const COUNTRY_STATUS: {
    readonly AVAILABLE: true;
    readonly UNAVAILABLE: false;
};
export type CountryStatus = (typeof COUNTRY_STATUS)[keyof typeof COUNTRY_STATUS];
//# sourceMappingURL=countries.d.ts.map