import type { Country, RawCountry } from "../types/country";
export declare class CountryAdapter {
    /**
     * Converts raw country data to Country
     * Used for deserialization
     */
    static toEnglish(raw: RawCountry): Country;
    /**
     * Converts Country to raw country data
     * Used for serialization
     */
    static toRaw(country: Country): RawCountry;
}
