import * as React from 'react'; import { OverridableComponent, OverrideProps } from '../OverridableComponent'; export interface BreadcrumbsTypeMap

{ props: P & { /** * The breadcrumb children. */ children?: React.ReactNode; /** * Override the default label for the expand button. * * For localization purposes, you can use the provided [translations](/guides/localization/). */ expandText?: string; /** * If max items is exceeded, the number of items to show after the ellipsis. */ itemsAfterCollapse?: number; /** * If max items is exceeded, the number of items to show before the ellipsis. */ itemsBeforeCollapse?: number; /** * Specifies the maximum number of breadcrumbs to display. When there are more * than the maximum number, only the first `itemsBeforeCollapse` and last `itemsAfterCollapse` * will be shown, with an ellipsis in between. */ maxItems?: number; /** * Custom separator node. */ separator?: React.ReactNode; }; defaultComponent: D; classKey: BreadcrumbsClassKey; } /** * * Demos: * * - [Breadcrumbs](https://mui.com/components/breadcrumbs/) * * API: * * - [Breadcrumbs API](https://mui.com/api/breadcrumbs/) */ declare const Breadcrumbs: OverridableComponent; export type BreadcrumbsClassKey = 'root' | 'ol' | 'li' | 'separator'; export type BreadcrumbsProps< D extends React.ElementType = BreadcrumbsTypeMap['defaultComponent'], P = {} > = OverrideProps, D>; export default Breadcrumbs;