import { IkasCategoryPathItem } from "../../../../storefront-models/src"; /** * Resolves the localized slug for a category path item, falling back to the default metadata slug. * * @ai-category Breadcrumb, Navigation * @ai-related getIkasCategoryPathItemHref * * @param categoryPathItem - The category path item to extract the slug from. * @returns The localized slug string, or the default slug, or undefined if no slug is available. * * @example * ```typescript * import { getIkasCategoryPathItemSlug } from "@ikas/bp-storefront"; * const slug = getIkasCategoryPathItemSlug(pathItem); * // e.g. "shoes" * ``` */ export declare function getIkasCategoryPathItemSlug(categoryPathItem: IkasCategoryPathItem): string | undefined; /** * Returns the fully qualified href for a category path item using its resolved slug. * * @ai-category Breadcrumb, Navigation * @ai-related getIkasCategoryPathItemSlug * * @param categoryPathItem - The category path item to generate the href for. * @returns The route-prefixed href string, or an empty string if no slug is available. * * @example * ```typescript * import { getIkasCategoryPathItemHref } from "@ikas/bp-storefront"; * const href = getIkasCategoryPathItemHref(pathItem); * // e.g. "/en/shoes" * ``` */ export declare function getIkasCategoryPathItemHref(categoryPathItem: IkasCategoryPathItem): string;