import { type TooltipProps } from "@salt-ds/core"; import type { IconProps } from "@salt-ds/icons"; import { type ComponentType, type HTMLAttributes, type ReactNode } from "react"; import type { CascadingMenuProps } from "../cascading-menu/CascadingMenuProps"; export interface BreadcrumbProps extends Pick { children?: ReactNode; ContainerProps?: HTMLAttributes; tooltipText?: string; tooltipProps?: TooltipProps; className?: string; href?: string; isCurrentLevel?: boolean; maxWidth?: number; minWidth?: number; overflowLabel?: string; Icon?: ComponentType; } export declare const Breadcrumb: import("react").ForwardRefExoticComponent>;