import { LitElement } from 'lit'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; /** * `bm-breadcrumb` * * * @slot default - Pass items to the Breadcrumb */ export declare class BmBreadcrumbs extends LitElement { #private; /** * Specify if items wrap or collapse to an ellipsis * @default true */ wrap: boolean; /** * Specify how many items show before ellipsis */ itemsBeforeCollapse: number; /** * Specify how many items show after ellipsis */ itemsAfterCollapse: number; /** * Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent */ theme?: ThemeTypes; private groupCtx; static styles: import('lit').CSSResult; protected updated(): void; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-breadcrumb': BmBreadcrumbs; } } //# sourceMappingURL=Breadcrumbs.d.ts.map