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; } /** * Use `Breadcrumbs` to show users their location within a hierarchy of more than two levels. Users can navigate back to any higher level directly. * @public */ export declare const Breadcrumbs: ((props: BreadcrumbsProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Item: (props: import("./Item.js").BreadcrumbsItemProps) => import("react").ReactElement | null; }; //# sourceMappingURL=Breadcrumbs.d.ts.map