import type { ElementType } from 'react'; import type { BreadcrumbLinkProps } from './types'; /** * Interactive link for breadcrumb navigation. Handles routing integration and accessibility states. * * Consumer `onClick` / `onKeyDown` handlers run first and are composed with the * internal activation flow: calling `preventDefault()` in them skips `onPress` * and `onNavigate`. A disabled link blocks only the activation keys (Enter and * Space); every other key still reaches the consumer `onKeyDown`. */ export declare const BreadcrumbLink: { ({ as, children, href, disabled, isExternal, target, rel, onPress, onClick, onKeyDown, ...props }: BreadcrumbLinkProps): import("react/jsx-runtime").JSX.Element; displayName: string; };