import { IkasCustomerAttribute } from "../../../../storefront-models/src"; /** * Initializes a customer attribute by applying locale-specific translations and removing the raw translations array. * * @ai-category CustomerAttribute, Initialization * @ai-related getCustomerAttributeAccountPagePermission, getCustomerAttributeRegisterPageRequirement * * @param attribute - The customer attribute to initialize with locale translations. * @param locale - The locale string to use for translation lookup, or null to skip translation. * @returns void * * @example * ```typescript * import { initIkasCustomerAttribute } from "@ikas/bp-storefront"; * initIkasCustomerAttribute(attribute, "en"); * console.log(attribute.name); // Now contains the localized name * ``` */ export declare function initIkasCustomerAttribute(attribute: IkasCustomerAttribute, locale: string | null): void;