import type { ComponentType, ElementType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface BreadcrumbItemProps extends HTMLAttrs { href: string children: ReactNode current?: boolean variant?: Variant tokens?: Record LinkRouter?: ElementType linkRouterProps?: Record onPress?: () => void } export declare const BreadcrumbItem: ComponentType