/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BubbleTooltipContext } from '../tooltip/BubbleTooltipContext.js'; import * as React from 'react'; /** * Represents the props of the KendoReact BubbleTooltip component. */ export interface MapBubbleLayerTooltipProps { /** * The renderer for the bubble layer tooltip. * * @return the content of the tooltip. */ render?: (props: BubbleTooltipContext) => React.ReactNode; } /** * Represents the KendoReact MapBubbleLayerTooltip component. */ declare const MapBubbleLayerTooltip: React.FunctionComponent; export { MapBubbleLayerTooltip };