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