UNPKG

@progress/kendo-react-map

Version:
27 lines (26 loc) 973 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { MarkerLayerOptions } from '@progress/kendo-charts'; import * as React from 'react'; /** * Represents the props of the KendoReact MapMarkerLayer component. */ export interface MapMarkerLayerProps extends MarkerLayerOptions { /** * The child components. Supports `MapMarkerLayerTooltip`. */ children?: React.ReactNode; } /** * Represents the KendoReact MapMarkerLayer component. * * @remarks * Supported children components are: {@link MapMarkerLayerTooltip}. */ declare const MapMarkerLayer: React.FunctionComponent<MapMarkerLayerProps>; export { MapMarkerLayer };