import type { EuCountryConfig } from "./types.js";
/**
 * Registry of the supported European country configurations, keyed by ISO
 * alpha-2 (lowercase). Adding a country is a one-line addition here plus its
 * `config.ts`; the `AddressParser` facade builds an `AddressParserEU` from
 * whichever config this map returns.
 */
export declare const euConfigs: Record<string, EuCountryConfig>;
export declare const euCountryCodes: string[];
