@progress/kendo-react-map
Version:
KendoReact Map package
26 lines (25 loc) • 968 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ShapeTooltipContext } from '../tooltip/ShapeTooltipContext.js';
import * as React from 'react';
/**
* Represents the props of the KendoReact ShapeTooltip component.
*/
export interface MapShapeLayerTooltipProps {
/**
* The renderer for the shape layer tooltip.
*
* @return the content of the tooltip.
*/
render?: (props: ShapeTooltipContext) => React.ReactNode;
}
/**
* Represents the KendoReact MapShapeLayerTooltip component.
*/
declare const MapShapeLayerTooltip: React.FunctionComponent<MapShapeLayerTooltipProps>;
export { MapShapeLayerTooltip };