import { type ReactNode } from 'react'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { MaskingProps } from '../../core/types/masking-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Accepted properties for Breadcrumbs * @public */ export interface BreadcrumbsProps extends StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { /** Elements to be displayed as Breadcrumbs. */ children?: ReactNode; } /** * The `Breadcrumbs` component can be used to indicate the * location and hierarchy of the current page. It also allows * users to easily navigate back to a higher level in the hierarchy. * @public */ export declare const Breadcrumbs: ((props: BreadcrumbsProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Item: (props: import("./Item.js").BreadcrumbsItemProps) => import("react").ReactElement | null; };