/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SankeyLabel, SankeyTooltipEvent } from '@progress/kendo-charts'; /** * Represents the context that is passed to the Sankey diagram Node tooltip template. */ export declare class SankeyNodeTooltipTemplateContext { /** * Contains the node color. */ color: string; /** * Contains the node label data. */ label: SankeyLabel; /** * Contains the node value. */ value: number; /** * @hidden */ constructor(e: SankeyTooltipEvent); }