import { EnumDecoder } from '@simonbackx/simple-encoding'; import type { CountryCode } from '@stamhoofd/types/Country'; import { Country } from '@stamhoofd/types/Country'; 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