import type { EventEmitter } from '../../stencil-public-runtime'; import type { BrNavigateDetail, BrNavigationMode } from '../../components/global.types'; interface NavigationOptions { event: MouseEvent; href?: string; target?: string; navigationMode?: BrNavigationMode; brNavigate?: EventEmitter; } export declare const shouldIgnoreNavigationClick: (event: MouseEvent) => boolean; export declare const handleNavigationClick: ({ event, href, target, navigationMode, brNavigate, }: NavigationOptions) => boolean; export {};