import { EnumDecoder } from '@simonbackx/simple-encoding'; export declare enum Country { Belgium = "BE", Netherlands = "NL", Luxembourg = "LU", France = "FR", Germany = "DE", Sweden = "SE", UnitedKingdom = "GB", Switzerland = "CH", Afghanistan = "AF", CzechRepublic = "CZ", UnitedStates = "US", Austria = "AT", Portugal = "PT", Other = "OTHER" } export type CountryCode = Exclude; export declare const countryCodes: CountryCode[]; export declare function countryToCode({ country, defaultCountryCode }: { country: Country; defaultCountryCode: CountryCode; }): CountryCode; export declare const CountryDecoder: EnumDecoder; export declare class CountryHelper { static getName(country: Country): string; static getList(): { text: string; value: Country; }[]; } //# sourceMappingURL=CountryDecoder.d.ts.map