blob: 241eb9159e62d8c693b8ab881fa862e4b24bdbe1 [file] [log] [blame]
import { ElementRef, AfterViewInit, ChangeDetectorRef } from '@angular/core';
export declare class TdBreadcrumbComponent implements AfterViewInit {
private _elementRef;
private _changeDetectorRef;
private _displayCrumb;
private _width;
separatorIcon: string;
_displayIcon: boolean;
/**
* Whether to display the crumb or not
*/
displayCrumb: boolean;
/**
* Width of the DOM element of the crumb
*/
readonly width: number;
/**
* Gets the display style of the crumb
*/
readonly displayBinding: string;
constructor(_elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
ngAfterViewInit(): void;
/**
* Stop click propagation when clicking on icon
*/
_handleIconClick(event: Event): void;
}