import { IkasCountry } from "../../../storefront-models/src"; /** * Initializes an IkasCountry by applying locale-specific translations to the country name and cleaning up raw translation data. * * @ai-category Initialization, Country * @ai-related setIkasCountryTranslations * * @param country - The country object to initialize with localized data. * @param locale - The locale code to use for translation lookup, or null to skip translation. * @returns void * * @example * ```typescript * import { initIkasCountry } from "@ikas/bp-storefront"; * const country = { name: "Turkey", locationTranslations: { en: "Turkey", fr: "Turquie" } }; * initIkasCountry(country, "fr"); * // country.name is now "Turquie" * ``` */ export declare function initIkasCountry(country: IkasCountry, locale: string | null): void;