export declare class DbBreadcrumb { /** * The data attribute can be used to generate breadcrumb by data. */ data?: string; /** * an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) */ arialabel: string; private compData; private hasItemsWrapper; get children(): Element[]; set children(value: Element[]); private _children; host: HTMLDbBreadcrumbElement; componentWillLoad(): void; render(): any; }