/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SankeyEvent, SankeyLinkDataItem } from '@progress/kendo-charts'; import { SankeyComponent } from '../../sankey.component'; import { SankeyBaseEvent } from './sankey-base-event'; /** * Represents the arguments for the link-related events of the [`SankeyComponent`](https://www.telerik.com/kendo-angular-ui/components/charts/api/sankeycomponent). */ export declare class SankeyLinkEvent extends SankeyBaseEvent { /** * Contains the `dataItem` of the related element. */ dataItem: SankeyLinkDataItem; /** * @hidden */ constructor(e: SankeyEvent, sender: SankeyComponent); }