import { LitElement } from 'lit'; /** * `bm-breadcrumb-item` * * @slot default - Pass text to an item * @slot icon - Pass icon to an item */ export declare class BmBreadcrumbsItem extends LitElement { #private; static styles: import('lit').CSSResult; /** * Pass href to an item */ href?: string; /** * Specify if the item is interactive without an href */ clickable: boolean; /** * Specify truncation width of the items. Sets max-width for all items but the last. */ truncationWidth?: string; /** * Specify explicitly if the item is the last one */ isCurrent: boolean; isCollapsed: boolean; private _iconNode; private group?; connectedCallback(): void; disconnectedCallback(): void; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-breadcrumb-item': BmBreadcrumbsItem; } } //# sourceMappingURL=BreadcrumbsItem.d.ts.map