import { type ReactNode } from 'react'; import { type DataTestId, type MaskingProps, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for Breadcrumbs * @public */ export interface BreadcrumbsProps extends StylingProps, DataTestId, MaskingProps { /** 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) => React.ReactElement | null) & { Item: (props: import("./Item.js").BreadcrumbsItemProps) => import("react").ReactElement | null; };