UNPKG

@progress/kendo-react-map

Version:
23 lines (22 loc) 745 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 { Store } from './store/store.js'; import { InstanceObserver } from '@progress/kendo-charts'; import * as React from 'react'; /** * @hidden */ export interface MapContextType { optionsStore: Store; observersStore: Store; childrenObserver: InstanceObserver; } /** * @hidden */ export declare const MapContext: React.Context<MapContextType | null>;