/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { AfterContentChecked } from '@angular/core'; import { ConfigurationService } from '../common/configuration.service'; import { SettingsComponent } from '../common/settings.component'; import { SankeyLinkTooltipTemplateDirective } from './tooltip/link-tooltip-template.directive'; import { SankeyNodeTooltipTemplateDirective } from './tooltip/node-tooltip-template.directive'; import { SankeyTooltip } from '@progress/kendo-charts'; import { SankeyTooltipTemplateService } from './tooltip/tooltip-template.service'; import * as i0 from "@angular/core"; /** * Represents the Sankey tooltip * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/sankey/elements/tooltip)). */ export declare class SankeyTooltipComponent extends SettingsComponent implements SankeyTooltip, AfterContentChecked { configurationService: ConfigurationService; private templateService; /** * Determines if the tooltip follows the mouse pointer. * * @default false */ followPointer?: boolean; /** * Sets the delay of the tooltip displaying. * The delay is measured in milliseconds. * * @default 100 */ delay?: number; /** * Sets the distance between the tooltip and the mouse pointer in pixels. * @default 12 */ offset: number; /** * Determines if the Sankey displays the link and node tooltips. * @default false */ visible: boolean; linkTooltipTemplate: SankeyLinkTooltipTemplateDirective; nodeTooltipTemplate: SankeyNodeTooltipTemplateDirective; constructor(configurationService: ConfigurationService, templateService: SankeyTooltipTemplateService); ngAfterContentChecked(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }