import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface BreadcrumbProps extends CommonProps { /** * All breadcrumbs to display. Use withRouter if you wish to use Breadcrumb with react-router. */ items: { href: string; text: string; withRouter?: boolean; }[]; } declare const Breadcrumb: ({ items, id, className, style, sx, "data-test-id": dataTestId, }: BreadcrumbProps) => ReactElement; export default Breadcrumb;