import { IkasCategoryPathItem } from "../../../../storefront-models/src"; /** * Initializes a category path item by applying locale-specific translations for its name. * * @ai-category Breadcrumb, Initialization * @ai-related initIkasCategory * * @param categoryPathItem - The category path item to initialize. * @param locale - The locale string used to apply translations, or null if no translations should be applied. * @returns void * * @example * ```typescript * import { initIkasCategoryPathItem } from "@ikas/bp-storefront"; * initIkasCategoryPathItem(pathItem, "en"); * ``` */ export declare function initIkasCategoryPathItem(categoryPathItem: IkasCategoryPathItem, locale: string | null): void;