@progress/kendo-react-map
Version:
KendoReact Map package
27 lines (26 loc) • 947 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 { BubbleLayerOptions } from '@progress/kendo-charts';
import * as React from 'react';
/**
* Represents the props of the KendoReact MapBubbleLayer component.
*/
export interface MapBubbleLayerProps extends BubbleLayerOptions {
/**
* The child tooltip components.
*/
children?: React.ReactNode;
}
/**
* Represents the KendoReact MapBubbleLayer component.
*
* @remarks
* Supported children components are: {@link MapBubbleLayerTooltip}.
*/
declare const MapBubbleLayer: React.FunctionComponent<MapBubbleLayerProps>;
export { MapBubbleLayer };