import React from 'react'; import type { DefaultAttributes } from '../types'; import type { HTMLAttributeAnchorTarget } from 'react'; export declare type TBreadcrumbItem = { label: string; onClick?: (e: React.MouseEvent) => void; href?: string; }; export declare type BreadcrumbVariant = 'default' | 'back'; export declare type BreadcrumbProps = { breadcrumbs: TBreadcrumbItem[]; scrim?: boolean; currentPage?: string; variant?: BreadcrumbVariant; currentPageLink?: string; target?: HTMLAttributeAnchorTarget; } & DefaultAttributes;