UNPKG

@progress/kendo-react-map

Version:
27 lines (26 loc) 963 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 { ShapeLayerOptions } from '@progress/kendo-charts'; import * as React from 'react'; /** * Represents the props of the KendoReact MapShapeLayer component. */ export interface MapShapeLayerProps extends ShapeLayerOptions { /** * The child components. Supports `MapShapeLayerTooltip`. */ children?: React.ReactNode; } /** * Represents the KendoReact MapShapeLayer component. * * @remarks * Supported children components are: {@link MapShapeLayerTooltip}. */ declare const MapShapeLayer: React.FunctionComponent<MapShapeLayerProps>; export { MapShapeLayer };