import { IkasProductGroup } from "../../../../storefront-models/src"; /** * Initializes a product group by applying locale-specific translations to group values and then removing the raw translations data. * * @ai-category Initialization, ProductGroup * @ai-related setProductGroupTranslations * * @param group - The product group to initialize * @param locale - The locale string for translations, or null to skip translations * @returns void * * @example * ```typescript * import { initIkasProductGroup } from "@ikas/bp-storefront"; * initIkasProductGroup(productGroup, "en"); * ``` */ export declare function initIkasProductGroup(group: IkasProductGroup, locale: string | null): void; /** * Applies locale-specific translations to a product group's values, updating each value's name and value fields from the matching translation. * * @ai-category Initialization, ProductGroup * @ai-related initIkasProductGroup * * @param group - The product group whose values will be translated * @param locale - The locale string to match against available translations * @returns void * * @example * ```typescript * import { setProductGroupTranslations } from "@ikas/bp-storefront"; * setProductGroupTranslations(productGroup, "en"); * ``` */ export declare function setProductGroupTranslations(group: IkasProductGroup, locale: string): void;