import { IkasBrand } from "../../../storefront-models/src"; /** * Initializes a brand by resolving its image from imageId, initializing its HTML metadata, and applying locale-specific translations. * * @ai-category Brand, Initialization * @ai-related getIkasBrandHref * * @param brand - The brand object to initialize, including image, metadata, and translations. * @param locale - The locale string used to select the correct translation, or null if no translation is needed. * @returns void * * @example * ```typescript * import { initIkasBrand } from "@ikas/bp-storefront"; * initIkasBrand(brand, "en"); * ``` */ export declare function initIkasBrand(brand: IkasBrand, locale: string | null): void;