import { IkasProductAttribute } from "../../../../storefront-models/src"; /** * Initializes a product attribute by applying locale-specific translations for name, description, and options, then removes the raw translations data. * * @ai-category Initialization, ProductAttribute * * @param attribute - The product attribute to initialize * @param locale - The locale string for translations, or null to skip translations * @returns void * * @example * ```typescript * import { initIkasProductAttribute } from "@ikas/bp-storefront"; * initIkasProductAttribute(attribute, "en"); * ``` */ export declare function initIkasProductAttribute(attribute: IkasProductAttribute, locale: string | null): void;