import type { Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent, NoChildrenProp } from '../../types'; import type { MenuItemProps } from '../Menu'; export interface BreadcrumbsProps extends BaseProps, NoChildrenProp { /** A set of actions representing the chronological hierarchy of pages or locations leading to the current view. */ path: MenuItemProps[]; /** * Renders only the leaf node outside the menu list. * @default false * Note: Disables variable length on resize. */ leafOnly?: boolean; /** Ref forwarded to the wrapping element. */ ref?: Ref; } export declare const StyledBreadcrumbs: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, { oneItemRemaining: boolean; fixedLength: boolean; }>> & string; declare const Breadcrumbs: ForwardRefForwardPropsComponent; export default Breadcrumbs; //# sourceMappingURL=Breadcrumbs.d.ts.map