//#region src/utils/country-codes.d.ts declare function normalizeCountryCode(countryCode: string): string; declare function isValidCountryCode(countryCode: string): boolean; /** * Validates and normalizes a country code value (single string or array). * Returns null if valid, or an error message string if invalid. */ declare function validateCountryCode(value: string | string[]): string | null; //#endregion export { isValidCountryCode, normalizeCountryCode, validateCountryCode }; //# sourceMappingURL=country-codes.d.ts.map