import React from 'react'; import type { MenuLevelItem } from '../types/globalNavProps'; interface LinkModifierProps { menuItem: MenuLevelItem; disabledTabIndex?: boolean; showIcon?: boolean; } export declare const isSelected: (currentUrl: string, linkUrl: string, exactMatch?: boolean) => boolean; declare const LinkModifier: ({ menuItem, disabledTabIndex, showIcon }: LinkModifierProps) => React.JSX.Element; export default LinkModifier;