import { DuetIconName, DuetIconSize, DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export declare class DuetBreadcrumb implements ThemeableComponent { element: HTMLDivElement; /** * Theme */ theme: DuetTheme; /** * Href for the link. Should be left empty for the last item, which should be the current page. */ href: string; /** * Icon */ icon: DuetIconName; /** * Icon size */ iconSize: DuetIconSize; /** * Adds accessible label for the link that is only shown for screen readers. * Typically, this label text replaces the visible text on the link for users * who use assistive technology. */ accessibleLabel: string; private hasSlottedContent; /** * Component lifecycle events. */ componentWillLoad(): void; connectedCallback(): void; disconnectedCallback(): void; /** * render() function * Always the last one in the class. */ render(): any; }