import { default as React } from 'react'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; export interface BreadcrumbProps extends React.ComponentPropsWithoutRef<'nav'> { /** * Pass items to the Breadcrumb */ children: React.ReactNode; /** * Specify if items wrap or collapse to an ellipsis * @ignore */ wrap?: boolean; /** * Specify how many items show before ellipsis * @ignore */ itemsBeforeCollapse?: number; /** * Specify how many items show after ellipsis * @ignore */ itemsAfterCollapse?: number; /** * Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent */ theme?: ThemeTypes; } export declare function Breadcrumb({ children, wrap, itemsBeforeCollapse, itemsAfterCollapse, theme, className: _className, ...props }: BreadcrumbProps): import("react/jsx-runtime").JSX.Element;