@progress/kendo-react-map
Version:
KendoReact Map package
26 lines (25 loc) • 889 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 * as React from 'react';
/**
* Represents the props of the KendoReact MapLayers component.
*/
export interface MapLayersProps {
/**
* The child layer components.
*/
children?: React.ReactNode;
}
/**
* Represents the KendoReact MapLayers component.
*
* @remarks
* Supported children components are: {@link MapShapeLayer}, {@link MapBubbleLayer}, {@link MapMarkerLayer}, {@link MapTileLayer}.
*/
declare const MapLayers: React.FunctionComponent<MapLayersProps>;
export { MapLayers };