/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { BreadCrumbComponent, BreadCrumbItem } from '@progress/kendo-angular-navigation'; import { ChartComponent } from './index'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI Chart Breadcrumb component for Angular. * * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts). * Use the `chart` input to link the Breadcrumb to the Chart instance. */ export declare class ChartBreadcrumbComponent implements OnInit, OnChanges, OnDestroy { /** * Defines the Chart instance to link to. */ chart: ChartComponent; /** * Defines the breadcrumb root item. * * @default "{ icon: 'home', svgIcon: homeIcon, title: 'Home' }" */ rootItem: BreadCrumbItem; /** * @hidden */ items: BreadCrumbItem[]; breadcrumb: BreadCrumbComponent; private subscription; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; /** * @hidden */ onItemClick(target: BreadCrumbItem): void; private onDrilldown; private onDrilldownLevelChange; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }