@progress/kendo-react-map
Version:
KendoReact Map package
23 lines (22 loc) • 745 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 { 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>;