import type { NavigationV2ItemCategory, NavigationItemCategory } from '@scayle/storefront-nuxt'; /** * Determine if a navigation item represents the category for the current page * * @param navigationItem The navigation item to test * @param pageType The page type taken from the page state * @param id The id parameter from the current route * @returns true if the navigation item represents the category for the current page, otherwise false */ export declare const isNavigationItemCategoryActive: (navigationItem: NavigationItemCategory | NavigationV2ItemCategory, pageType: string, id: string) => boolean;