/**----------------------------------------------------------------------------------------- * Copyright © 2025 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 { LayerComponent } from '../map/layer.component'; import { BubbleTooltipTemplateDirective } from './bubble-tooltip-template.directive'; import { TooltipTemplateService } from './tooltip-template.service'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI BubbleTooltip component for Angular. * * Configures the [Bubble Layer Tooltip](slug:bubble_layers_map#toc-tooltips). * * @example * ```typescript * @Component({ * selector: 'my-app', * template: ` * * * * *
{{ dataItem.name }}: {{ value }}
*
*
*
*
* ` * }) * export class AppComponent { * public bubbleData = [{ name: 'Population', value: 50000 }]; * } * ``` */ export declare class BubbleTooltipComponent extends SettingsComponent implements AfterContentChecked { configurationService: ConfigurationService; private templateService; private layer; bubbleTooltipTemplate: BubbleTooltipTemplateDirective; constructor(configurationService: ConfigurationService, templateService: TooltipTemplateService, layer: LayerComponent); ngAfterContentChecked(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }