@progress/kendo-react-map
Version:
KendoReact Map package
26 lines (25 loc) • 986 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 { MarkerTooltipContext } from '../tooltip/MarkerTooltipContext.js';
import * as React from 'react';
/**
* Represents the props of the KendoReact MapMarkerLayerTooltip component.
*/
export interface MapMarkerLayerTooltipProps {
/**
* The renderer for the marker layer tooltip.
*
* @return the content of the tooltip.
*/
render?: (props: MarkerTooltipContext) => React.ReactNode;
}
/**
* Represents the KendoReact MapMarkerLayerTooltip component.
*/
declare const MapMarkerLayerTooltip: React.FunctionComponent<MapMarkerLayerTooltipProps>;
export { MapMarkerLayerTooltip };